:root {
    --primary-bg: #F9FBE7;
    --accent-green-dark: #33691E;
    --accent-green-medium: #558B2F;
    --accent-green-light: #8BC34A;
    --accent-light: #DCEDC8;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.9;
    font-weight: 300;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.06em;
}

h1 {
    font-size: 72px;
    font-weight: 800;
}

h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(180deg, var(--accent-green-dark) 0%, var(--accent-green-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-green-light);
    padding-bottom: 10px;
}

p {
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
    color: var(--text-light);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(85, 139, 47, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green-dark);
    text-decoration: none;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.04em;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 400;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green-medium);
}

body {
    padding-top: 70px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-image {
    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(135deg, rgba(249, 251, 231, 0.85) 0%, rgba(133, 195, 74, 0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 40px;
}

.hero-title {
    font-size: 90px;
    font-weight: 800;
    color: var(--accent-green-dark);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.compliance-message {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 8px;
    color: var(--accent-green-dark);
    font-weight: 600;
    display: inline-block;
    font-size: 18px;
    border: 2px solid var(--accent-green-medium);
}

section {
    padding: 140px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--white);
}

section:nth-child(even) {
    background: linear-gradient(135deg, rgba(249, 251, 231, 0.3) 0%, rgba(220, 237, 200, 0.2) 100%);
}

.content-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.principles-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.principles-list li {
    padding: 20px;
    background-color: rgba(220, 237, 200, 0.4);
    border-left: 5px solid var(--accent-green-medium);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.principles-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(85, 139, 47, 0.1);
}

.traditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.tradition-item {
    animation: fadeInUp 0.6s ease-out;
}

.tradition-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .traditions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.categories-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background-color: var(--white);
}

.categories-table thead {
    background-color: var(--accent-green-light);
    color: var(--white);
}

.categories-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--accent-green-medium);
}

.categories-table td {
    padding: 18px;
    border: 1px solid var(--accent-light);
    color: var(--text-light);
}

.categories-table tbody tr:hover {
    background-color: rgba(220, 237, 200, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(85, 139, 47, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-card ul {
    list-style-position: inside;
    margin: 15px 0;
}

.product-card li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-text {
    font-style: italic;
    color: var(--accent-green-medium);
    margin-top: 15px;
}

.choice-list {
    list-style: none;
    margin-top: 30px;
}

.choice-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: rgba(133, 195, 74, 0.1);
    border-left: 5px solid var(--accent-green-light);
    border-radius: 4px;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.culture-item {
    animation: fadeInUp 0.6s ease-out;
}

.culture-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

.science-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.science-list li {
    padding: 20px;
    background-color: rgba(220, 237, 200, 0.3);
    border-radius: 8px;
    border-left: 4px solid var(--accent-green-medium);
}

@media (max-width: 768px) {
    .science-list {
        grid-template-columns: 1fr;
    }
}

.faq-items {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(249, 251, 231, 0.5);
    border-radius: 8px;
    border-left: 5px solid var(--accent-green-light);
}

.faq-item h4 {
    margin-bottom: 15px;
}

.views-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quotes-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expert-quote {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-green-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expert-quote:hover {
    transform: translateY(-5px);
}

.expert-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.expert-quote footer {
    font-weight: 600;
    color: var(--accent-green-dark);
    font-size: 14px;
}

.disclaimer-box {
    background-color: rgba(220, 237, 200, 0.4);
    padding: 40px;
    border-radius: 8px;
    border-left: 6px solid var(--accent-green-dark);
}

.disclaimer-box h3 {
    color: var(--accent-green-dark);
    margin-bottom: 20px;
}

.disclaimer-box ul {
    list-style-position: inside;
    margin: 20px 0;
}

.disclaimer-box li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.final-cta-section {
    background: linear-gradient(135deg, rgba(133, 195, 74, 0.05) 0%, rgba(220, 237, 200, 0.1) 100%);
}

.final-cta-section ul {
    list-style-position: inside;
    margin-top: 30px;
}

.final-cta-section li {
    margin-bottom: 15px;
    padding-left: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

.contact-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: rgba(220, 237, 200, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.form-disclaimer {
    background-color: var(--white);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-green-medium);
    font-size: 14px;
    color: var(--accent-green-dark);
}

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

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

.contact-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-light);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-green-medium);
}

.btn {
    padding: 12px 30px;
    background-color: var(--accent-green-medium);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--accent-green-dark);
    transform: scale(1.02);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-secondary-small {
    background-color: transparent;
    color: var(--accent-green-medium);
    border: 2px solid var(--accent-green-medium);
    padding: 6px 18px;
    font-size: 14px;
}

.btn-secondary-small:hover {
    background-color: var(--accent-green-medium);
    color: var(--white);
}

.btn-link {
    background-color: transparent;
    color: var(--accent-green-medium);
    text-decoration: underline;
    padding: 8px 0;
}

.btn-link:hover {
    color: var(--accent-green-dark);
    background-color: transparent;
}

.thank-you-message {
    background-color: rgba(139, 195, 74, 0.2);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-green-light);
    color: var(--accent-green-dark);
    font-weight: 600;
}

.site-footer {
    background-color: var(--accent-green-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-content h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-bg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-green-dark);
    color: var(--white);
    padding: 20px 40px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    color: var(--white);
    margin: 0;
    font-size: 14px;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    padding-top: 50px;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 50px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--text-dark);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--accent-green-dark);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    section {
        padding: 80px 40px;
    }

    .principles-list {
        grid-template-columns: 1fr;
    }

    .categories-table {
        font-size: 12px;
    }

    .categories-table th,
    .categories-table td {
        padding: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .modal-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 20px;
    }

    .content-container {
        padding: 0 20px;
    }

    .navbar-nav .nav-link {
        margin-left: 15px;
    }

    .navbar {
        padding: 10px 0;
    }
}
