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

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

a {
    text-decoration: none;
    color: inherit;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-fullwidth {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.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.5));
}

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

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

.hero-content p {
    font-size: 22px;
    font-weight: 300;
}

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

.lead-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 24px;
}

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

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.citation {
    color: #a5d6a7;
    text-decoration: underline;
    font-weight: 600;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6f00;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e65100;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #757575;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #616161;
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

.testimonial-cards {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonial-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #2c5f2d;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.benefits-reveal {
    padding: 80px 20px;
    background-color: #e8f5e9;
}

.benefits-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-large {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.benefit-large img {
    flex: 1;
    max-width: 50%;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.benefit-small {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.benefit-small h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.benefit-small p {
    font-size: 17px;
    line-height: 1.6;
}

.ingredients-section {
    padding: 80px 20px;
    background-color: #fff;
}

.ingredients-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.ingredients-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 17px;
}

.ingredients-list li strong {
    color: #2c5f2d;
}

.no-additives {
    font-size: 19px;
    font-weight: 600;
    color: #d32f2f;
    margin-top: 30px;
}

.services-pricing {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.services-pricing h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #ff6f00;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ff6f00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 25px 0;
    text-align: center;
}

.select-service {
    width: 100%;
    margin-top: 10px;
}

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

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #a5d6a7;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #a5d6a7;
}

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #a5d6a7;
}

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

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #ccc;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.page-hero {
    padding: 80px 20px;
    background-color: #2c5f2d;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-story {
    padding: 80px 20px;
    background-color: #fff;
}

.content-offset {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-offset img {
    flex: 1;
    max-width: 45%;
    background-color: #e8f5e9;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid #2c5f2d;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #fff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

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

.team-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #e8f5e9;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.team-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.mission-section {
    padding: 80px 20px;
    background-color: #e8f5e9;
}

.mission-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #fff;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-content ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #ff6f00;
    margin: 20px 0;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.cta-bottom {
    padding: 80px 20px;
    background-color: #2c5f2d;
    color: #fff;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-bottom p {
    font-size: 19px;
    margin-bottom: 30px;
}

.cta-bottom .btn-primary {
    background-color: #ff6f00;
}

.contact-info {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-faq {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact-faq h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #e8f5e9;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

#service-confirmation {
    font-weight: 700;
    color: #2c5f2d;
    font-size: 20px;
}

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

.legal-page {
    padding: 60px 20px 80px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

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

    .split-content,
    .content-offset,
    .service-block,
    .contact-grid {
        flex-direction: column;
    }

    .split-image,
    .content-offset img,
    .service-image {
        max-width: 100%;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .testimonial-grid,
    .team-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}