* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: white;
    color: black;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #f8f8f8;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e8e8e8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: white;
    color: #2c2c2c;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.cta-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.visual-break {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #ddd;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break-two {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-color: #ddd;
    margin: 4rem 0;
}

.visual-break-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplify {
    padding: 6rem 2rem;
}

.problem-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
}

.problem-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.problem-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insight-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.trust-build {
    padding: 6rem 2rem;
    background: #fafafa;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-left: 4px solid #667eea;
}

.trust-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #666;
    font-size: 1.05rem;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #2c2c2c;
    color: white;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.benefits-reveal {
    padding: 6rem 2rem;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.benefits-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 320px;
    background: #f9f9f9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.benefit-item p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service-btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.cta-transition {
    padding: 5rem 2rem;
    background: #f0f0f0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #555;
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.service-display {
    padding: 1rem;
    background: #f0f0f0;
    border-left: 4px solid #667eea;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #667eea;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

.form-disclaimer a {
    color: #667eea;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fffbf0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.page-header {
    padding: 8rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    padding: 2.5rem;
    background: white;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 1rem;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #667eea;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .floating-nav {
        width: 95%;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .problem-wrapper {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}