* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #7cb342;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #7cb342;
    color: #fff;
}

.btn-accept:hover {
    background-color: #689f38;
}

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

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

.hero-full {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-center {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-text-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.4rem;
    font-weight: 300;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.opening-line {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2c5f2d;
    line-height: 1.4;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.inline-story-img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.citation {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1f4420;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f0f4f0;
}

.insight-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #7cb342;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.benefit-large {
    flex: 2;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 2.5rem;
}

.benefit-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.benefit-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.benefit-card p {
    line-height: 1.6;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.container-standard {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 40%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7cb342;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5f2d;
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1f4420;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f0f4f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-label a {
    color: #2c5f2d;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #7cb342;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #689f38;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #fff8e1;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #7cb342;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #7cb342;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-references {
    max-width: 350px;
}

.footer-references h4 {
    margin-bottom: 1rem;
    color: #7cb342;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.6;
}

.references-list a {
    color: #7cb342;
    text-decoration: none;
}

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

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

.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.page-hero .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-hero .hero-text-center h1 {
    font-size: 3rem;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #fff;
}

.about-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.cta-box {
    background-color: #f0f4f0;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.ingredients-list {
    list-style: none;
    margin: 1rem 0;
}

.ingredients-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.ingredients-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7cb342;
    font-size: 1.5rem;
    line-height: 1.2;
}

.contact-page-content {
    padding: 5rem 2rem;
    background-color: #fff;
}

.contact-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    background-color: #f0f4f0;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f5e9 100%);
}

.thanks-container {
    max-width: 700px;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #7cb342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #fff;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.submission-details {
    background-color: #f0f4f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.submission-details h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.detail-item {
    margin-bottom: 0.8rem;
}

.detail-item strong {
    color: #333;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background-color: #fff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

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

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 250px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

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