:root {
    --primary-green: #3A4F2B;
    --accent-warm: #E8D9C5;
    --accent-herbal: #A8BFA4;
    --accent-deep: #5C6B52;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary-green);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(58, 79, 43, 0.1);
    padding: 1rem 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-out;
}

.navbar-brand {
    color: var(--primary-green) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease-out;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 79, 43, 0.5) 0%, rgba(58, 79, 43, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    color: white;
    font-size: 72px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.compliance-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.95;
    margin-top: 2rem;
}

.block {
    padding: 80px 0;
    position: relative;
}

.block:nth-child(even) {
    background-color: #F8F6F0;
}

.block-2 {
    background-color: #FAFAFA;
}

.block-4, .block-4b {
    background-color: rgba(232, 217, 197, 0.15);
}

.block-3 {
    background-color: #F8F6F0;
}

.block-7 {
    background-color: rgba(168, 191, 164, 0.08);
}

.block-9 {
    background-color: #F8F6F0;
}

.block-14 {
    background-color: rgba(58, 79, 43, 0.05);
}

.container-lg {
    max-width: 1200px;
}

.element-card {
    background-color: white;
    border: 2px solid var(--accent-herbal);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.4s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.element-card:hover {
    transform: scale(1.04);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(58, 79, 43, 0.1);
}

.element-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.element-card h3 {
    font-size: 24px;
    margin-bottom: 0.75rem;
}

.element-card p {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    max-height: 400px;
    object-fit: cover;
}

.botanical-card {
    background-color: white;
    border: 2px solid var(--accent-warm);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.4s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.botanical-card:hover {
    transform: scale(1.04);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(58, 79, 43, 0.15);
}

.botanical-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.botanical-card h3 {
    font-size: 22px;
    margin-bottom: 0.75rem;
}

.botanical-card p {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(58, 79, 43, 0.08);
}

.comparison-table thead {
    background-color: var(--primary-green);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    border: none;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(58, 79, 43, 0.1);
}

.comparison-table tbody tr:hover {
    background-color: rgba(232, 217, 197, 0.3);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.misconceptions-list {
    display: grid;
    gap: 2rem;
}

.misconception-item {
    background-color: white;
    padding: 2rem;
    border-left: 5px solid var(--primary-green);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(58, 79, 43, 0.06);
}

.misconception-item strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.intro-text {
    font-size: 18px;
    margin-bottom: 1rem;
}

.info-note {
    background-color: rgba(168, 191, 164, 0.15);
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--accent-warm);
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s ease-out;
    border: 2px solid var(--primary-green);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 79, 43, 0.2);
}

.site-footer {
    background-color: var(--primary-green);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.site-footer h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.site-footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.compliance-footer {
    font-size: 12px;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: color 0.3s ease-out;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 217, 197, 0.3);
    font-size: 12px;
    opacity: 0.85;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 2px solid var(--primary-green);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(58, 79, 43, 0.1);
    display: none;
    z-index: 999;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-green);
    background-color: transparent;
    color: var(--primary-green);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease-out;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background-color: var(--primary-green);
    color: white;
}

.cookie-btn.accept {
    background-color: var(--primary-green);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--accent-deep);
    border-color: var(--accent-deep);
}

.contact-form {
    max-width: 500px;
}

.contact-form .form-control {
    border: 2px solid var(--accent-herbal);
    padding: 0.75rem 1rem;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease-out;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(58, 79, 43, 0.1);
    outline: none;
}

.contact-form label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-green);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(58, 79, 43, 0.06);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 22px;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

.policy-block {
    background-color: #FAFAFA;
}

.last-updated {
    font-size: 14px;
    color: #A8BFA4;
    margin-bottom: 2rem;
    font-style: italic;
}

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

    h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

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

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .block {
        padding: 40px 0;
    }

    .cta-links {
        gap: 0.75rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-content p {
        min-width: auto;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    body {
        font-size: 15px;
        line-height: 1.6;
    }
}
