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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #d32f2f;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2c2c2c;
}

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

.hero-overlay {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

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

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

.narrative-intro {
    padding: 120px 20px;
    background: #fafafa;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrative-intro p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.visual-block {
    width: 100%;
    background-color: #1a1a1a;
}

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

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

.problem-amplification h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
    color: #1a1a1a;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-column {
    flex: 1;
}

.text-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.image-column {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
}

.centered {
    text-align: center;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #fafafa;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-left: 5px solid #d32f2f;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card blockquote {
    font-size: 1.35rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.benefits-showcase {
    padding: 120px 20px;
    background: #ffffff;
}

.benefits-showcase h2 {
    font-size: 2.8rem;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 800;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 320px;
    background-color: #f9f9f9;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-card p {
    padding: 0 25px 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.citation {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

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

.science-backing {
    padding: 100px 20px;
    background: #f0f4f8;
}

.science-backing h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

.science-backing p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #333;
}

.trust-building {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #bbb;
}

.services-preview {
    padding: 140px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 80px;
}

.services-visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 35px;
}

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 20px;
}

.cta-inline {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #b71c1c;
}

.form-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

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

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

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

.submit-btn:hover {
    background: #b71c1c;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
    border-top: 3px solid #ffc107;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.site-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 80px 20px 30px;
}

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

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

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #d32f2f;
}

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

.references-list li {
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    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: 0.95rem;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #d32f2f;
    color: white;
}

.cookie-accept:hover {
    background: #b71c1c;
}

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

.cookie-reject:hover {
    background: white;
    color: #1a1a1a;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
}

.thanks-box h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.back-home {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.back-home:hover {
    background: #b71c1c;
}

.about-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 100px 20px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.services-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-list {
    padding: 100px 20px;
}

.contact-hero {
    padding: 180px 20px 100px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-content {
    padding: 100px 20px;
}

.contact-info {
    background: #fafafa;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 1.15rem;
    color: #1a1a1a;
}

.legal-page {
    padding: 140px 20px 80px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

.legal-page .last-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #333;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 10px 20px;
    }

    .nav-container {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }

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

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

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

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

    .benefit-card {
        min-width: auto;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
