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

:root {
    --primary: #2d5016;
    --secondary: #6b9b37;
    --accent: #a8d96e;
    --dark: #1a2f0d;
    --light: #f4f7f0;
    --text: #333;
    --border: #e0e7d8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

img {
    object-fit: cover;
}

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

.ad-disclosure {
    background: var(--light);
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid var(--border);
}

header {
    background: #fff;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

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

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

.nav-links a:hover {
    color: var(--secondary);
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--light);
}

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

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

.section-title {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary);
}

.story-block {
    margin-bottom: 50px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.story-block h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary);
}

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

.story-img {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 8px;
    background-color: var(--border);
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 240px;
    background-color: var(--light);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.select-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-btn:hover {
    background: var(--dark);
}

.select-btn.selected {
    background: var(--accent);
    color: var(--dark);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.form-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 20px;
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    color: var(--text);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--primary);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.error-msg {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

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

.references a {
    color: var(--secondary);
    text-decoration: underline;
}

.disclaimer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 25px;
    border-radius: 8px;
    margin: 50px 0;
}

.disclaimer h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #856404;
}

.disclaimer p {
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
}

.citation {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

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

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-section a {
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 25px 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.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-text {
    flex: 1 1 400px;
    font-size: 15px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary);
}

.cookie-reject {
    background: #666;
    color: #fff;
}

.cookie-reject:hover {
    background: #444;
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 17px;
}

.contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-img {
    flex: 1 1 400px;
    height: 400px;
    border-radius: 8px;
    background-color: var(--light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
}

.service-img {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 8px;
    background-color: var(--light);
}

.service-details {
    flex: 1 1 300px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary);
}

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

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

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--light);
    border-radius: 12px;
    border: 3px solid var(--secondary);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.thanks-container .cta-btn {
    margin-top: 30px;
}

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

    .section-title {
        font-size: 32px;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

    .service-img {
        flex: 1 1 100%;
    }

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