:root {
    --primary-color: #2E7D32;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F5F9F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.content-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.content-card img {
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card h3 {
    color: var(--primary-color);
}

.info-box {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.nutrient-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.nutrient-icon img {
    width: 30px;
    height: 30px;
}

.infographic-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 0;
}

.infographic-section h2,
.infographic-section h3,
.infographic-section p {
    color: var(--bg-white);
}

.infographic-card {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.infographic-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.two-column-layout {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sidebar-widget h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    display: block;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

.faq-section .card {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section .card-header {
    background: var(--bg-white);
    border: none;
    padding: 0;
}

.faq-section .card-header button {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .card-header button:hover {
    color: var(--primary-color);
}

.faq-section .card-header button::after {
    content: "+";
    font-size: 24px;
    color: var(--primary-color);
}

.faq-section .card-header button[aria-expanded="true"]::after {
    content: "-";
}

.faq-section .card-body {
    padding: 0 25px 20px;
    color: var(--text-light);
}

.cta-section {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-control {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
    outline: none;
}

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

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

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 18px;
}

footer p {
    color: #aaaaaa;
    margin-bottom: 10px;
}

footer a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light);
}

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

footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.disclaimer-box {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.disclaimer-box h5 {
    color: #F57C00;
    margin-bottom: 10px;
    font-size: 16px;
}

.disclaimer-box p {
    color: #5D4037;
    margin: 0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin: 0 0 15px;
    font-size: 14px;
}

.cookie-banner .btn {
    margin-right: 10px;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

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

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 22px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    margin-bottom: 10px;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.table-nutrient {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.table-nutrient thead {
    background: var(--primary-color);
    color: var(--bg-white);
}

.table-nutrient th,
.table-nutrient td {
    padding: 15px 20px;
    text-align: left;
}

.table-nutrient tbody tr:nth-child(even) {
    background: var(--bg-light);
}

@media (max-width: 991px) {
    .two-column-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

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

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

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

    .section {
        padding: 40px 0;
    }

    .content-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

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

    .infographic-number {
        font-size: 36px;
    }
}
