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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.nav a:hover {
    color: #2d5016;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f4f7f5;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #fff;
    color: #2d5016;
}

.btn-cookie-accept:hover {
    background-color: #f0f0f0;
}

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

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

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #e8ede9;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(45, 80, 22, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d5016;
}

.hero-text-card p {
    font-size: 20px;
    color: #555;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card,
.insight-card,
.revelation-card,
.science-card,
.process-card,
.about-card,
.values-card,
.team-card {
    padding: 40px;
    border-radius: 8px;
    background-color: #fff;
}

.story-card h2,
.insight-card h2,
.revelation-card h2,
.science-card h2,
.about-card h2,
.values-card h2,
.process-card h2,
.team-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
}

.story-card p,
.insight-card p,
.revelation-card p,
.science-card p,
.about-card p,
.values-card p,
.process-card p,
.team-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.card-content img,
.science-card img,
.about-card img,
.process-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5016;
}

.revelation-section {
    padding: 80px 0;
    background-color: #fafbfa;
}

.benefit-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5016;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.science-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.testimonial-section {
    padding: 80px 0;
    background-color: #f4f7f5;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2d5016;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2d5016;
}

.collections-preview {
    padding: 80px 0;
    background-color: #fff;
}

.collections-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.collection-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #e5e5e5;
}

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

.collection-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e8ede9;
}

.collection-info {
    padding: 24px;
}

.collection-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.collection-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 16px;
}

.btn-select,
.btn-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 0;
    background-color: #fafbfa;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d5016;
}

.form-card p {
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1f3810;
}

.footer {
    background-color: #2d5016;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

.footer-section a:hover {
    opacity: 0.8;
}

.footer-disclaimer {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-references {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 14px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-references p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-references a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero {
    padding: 80px 0 40px;
    background-color: #f4f7f5;
}

.page-hero h1 {
    font-size: 48px;
    color: #2d5016;
}

.page-hero p {
    font-size: 20px;
    color: #555;
    margin-top: 16px;
}

.services-content {
    padding: 60px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 400px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e8ede9;
}

.service-details {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5016;
}

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.contact-content {
    padding: 60px 0;
}

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

.contact-card,
.map-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 8px;
}

.contact-card {
    background-color: #fff;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d5016;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5016;
}

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

.map-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f4f7f5;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #2d5016;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

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

.about-content {
    padding: 60px 0;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2d5016;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5016;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d5016;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-text-card {
        padding: 30px;
    }

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

    .hero-text-card p {
        font-size: 16px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

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

    .collection-card {
        flex: 1 1 100%;
    }

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

    .service-image {
        flex: 0 0 300px;
    }

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

    .thanks-card {
        padding: 40px 30px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}