* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin-right: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-immersive {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 36px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
}

.hero-content-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.story-container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-container-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-container-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 40px 0;
}

.insight-box p {
    margin: 0;
    color: #856404;
}

.problem-amplification {
    padding: 80px 20px;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.emphasis-text {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.science-backed {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.trust-elements {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.section-center-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.approach-reveal {
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.approach-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-intermediate {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box-centered h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.services-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-left-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #1a1a1a;
    max-width: 600px;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-visual {
    flex: 0 0 400px;
    background-color: #e9ecef;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-benefits {
    font-size: 14px;
    color: #16a085;
    font-weight: 600;
    margin: 20px 0;
}

.service-price {
    font-size: 34px;
    font-weight: 800;
    color: #2c3e50;
    margin: 25px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    padding: 14px;
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 6px;
    color: #1565c0;
    font-weight: 600;
    font-size: 15px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.final-reassurance {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #e9ecef;
    color: #4a5568;
}

.btn-cookie-reject:hover {
    background-color: #dee2e6;
}

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

    .nav-brand {
        margin-right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .service-block {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 auto;
        width: 100%;
    }

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

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