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

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

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-overlay {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.7));
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 21px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 35px;
    border: 2px solid #3498db;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: #3498db;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
}

.story-intro {
    background-color: #f8f9fa;
}

.story-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #34495e;
}

.story-intro img {
    width: 100%;
    border-radius: 8px;
    margin: 40px 0;
}

.problem-amplification {
    padding: 100px 20px;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    background-color: #ecf0f1;
}

.insight-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #34495e;
}

.highlight-box {
    background-color: #3498db;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.highlight-box p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.how-it-works {
    background-color: #ffffff;
}

.how-it-works h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-flow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 8px;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-card p {
    font-size: 16px;
    color: #34495e;
}

.trust-building {
    background-color: #f8f9fa;
}

.trust-building img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
}

.trust-building h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-building p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.testimonials-inline {
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-inline h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
}

.science-backed {
    background-color: #ffffff;
}

.science-backed h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.science-backed p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.science-backed sup a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.science-backed img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
}

.services-reveal {
    background-color: #ecf0f1;
}

.services-reveal h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-reveal > .container > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #34495e;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 30px;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-form-section {
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.cta-form-section > .narrow-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    color: #2c3e50;
}

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

.cta-submit {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 30px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #2980b9;
}

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

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

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

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

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

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

.footer-section p {
    font-size: 15px;
    color: #bdc3c7;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

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

.references li {
    margin-bottom: 10px;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    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: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    color: #ecf0f1;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.about-story img {
    width: 100%;
    border-radius: 8px;
    margin: 40px 0;
}

.approach-section {
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

.approach-item p {
    font-size: 16px;
    color: #34495e;
}

.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-note {
    background-color: #ecf0f1;
}

.team-note h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-note p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-detailed {
    background-color: #ffffff;
}

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    display: block;
}

.cta-bottom {
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-bottom h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.response-time {
    background-color: #f8f9fa;
}

.response-time h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.response-time p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

.thanks-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.thanks-section > .narrow-content > p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #34495e;
    text-align: center;
}

.confirmation-box {
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.confirmation-box p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: disc;
    padding-left: 30px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-date {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 25px;
}

.legal-page li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .process-flow {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}