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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.floating-nav nav {
    display: flex;
    gap: 25px;
}

.floating-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.floating-nav a:hover {
    color: #27ae60;
}

.hero-visual {
    height: 100vh;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 15%;
    left: 8%;
    color: white;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.intro-asymmetric {
    padding: 120px 5%;
    background-color: #f8f9fa;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-content {
    flex: 1.3;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.citation {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.benefits-reveal {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-row {
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial cite {
    font-style: normal;
    color: #6c757d;
    font-size: 0.95rem;
}

.services-overview {
    padding: 100px 5%;
    background-color: white;
}

.services-overview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    min-width: 250px;
}

.service-item p {
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.service-item .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    min-width: 120px;
    text-align: right;
}

.select-service {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #229954;
}

.cta-sticky {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-display {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
    border: 2px solid #27ae60;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-references {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-references p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-references a {
    color: #27ae60;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#acceptCookies {
    background-color: #27ae60;
    color: white;
}

#acceptCookies:hover {
    background-color: #229954;
}

#rejectCookies {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

#rejectCookies:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .intro-offset {
        flex-direction: column;
    }

    .insight-section {
        flex-direction: column;
    }

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

    .testimonial-row {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item h3,
    .service-item .price {
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}