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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
}

.nav-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c5530;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 24px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 24px;
    background: #f9fafb;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-section {
    padding: 120px 24px;
    background: #fff;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-reveal {
    padding: 100px 24px;
    background: #2c5530;
    color: #fff;
}

.centered-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 42px;
    margin-bottom: 48px;
}

.centered-block img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #3d6b40;
}

.insight-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.trust-building {
    padding: 100px 24px;
    background: #f5f5f5;
}

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

.content-left {
    flex: 1.5;
}

.content-left h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-right {
    flex: 1;
}

.quote-card {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4CAF50;
}

.quote-card p {
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quote-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.benefits-stacked {
    background: #fff;
}

.benefit-block {
    display: flex;
    align-items: center;
    padding: 80px 24px;
}

.benefit-block.bg-light {
    background: #f9fafb;
}

.benefit-block.bg-dark {
    background: #2c5530;
    color: #fff;
}

.benefit-content {
    flex: 1;
    padding: 0 60px;
}

.benefit-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.7;
}

.benefit-visual {
    flex: 1;
    background-color: #e8f5e9;
}

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

.bg-dark .benefit-visual {
    background-color: #1a3a1e;
}

.social-proof {
    padding: 100px 24px;
    background: #fff;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: #f9fafb;
    padding: 36px;
    border-radius: 8px;
    border-top: 3px solid #4CAF50;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.offer-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.offer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.offer-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.offer-intro {
    font-size: 19px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 22px);
    min-width: 320px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #4CAF50;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #4CAF50;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 24px;
}

.cta-select {
    width: 100%;
    padding: 14px 24px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-select:hover {
    background: #45a049;
}

.form-section {
    padding: 80px 24px;
    background: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 32px;
    color: #555;
    font-size: 17px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #45a049;
}

.scientific-backing {
    padding: 80px 24px;
    background: #f5f5f5;
}

.scientific-backing h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.scientific-backing p {
    font-size: 16px;
    line-height: 1.8;
}

.scientific-backing a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.scientific-backing a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 24px;
    background: #fff9e6;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    background: #fff;
    border: 2px solid #f0c14b;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 24px 24px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

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

.footer-section a:hover {
    color: #4CAF50;
}

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

.references li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

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

.footer-bottom p {
    font-size: 14px;
}

@media (max-width: 968px) {
    .split-content,
    .asymmetric-layout,
    .testimonial-grid,
    .footer-content {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
    }
}