body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #2E8B57;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

.navbar {
    background-color: #2E8B57;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease-in-out;
    z-index: 1030;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FFD700 !important;
}

.sticky-top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 139, 87, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.btn-primary {
    background-color: #2E8B57;
    border-color: #2E8B57;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.section-padding {
    padding: 4rem 0;
}

.bg-light-green {
    background-color: #e6f4ed;
}

.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card-title {
    color: #2E8B57;
    font-weight: 600;
}

.card-text {
    color: #555;
}

.article-card-icon {
    font-size: 2rem;
    color: #87CEEB;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.nutrient-table th {
    background-color: #2E8B57;
    color: #fff;
}

.nutrient-table td {
    vertical-align: middle;
}

.pyramid-graphic {
    width: 100%;
    max-width: 300px;
    height: 250px;
    background-color: #87CEEB;
    margin: 0 auto 1rem;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 10px;
}

.pyramid-segment {
    width: 80%;
    background-color: #FFD700;
    margin-bottom: 5px;
    border-radius: 3px;
    text-align: center;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.pyramid-graphic.pyramid-1 .pyramid-segment:nth-child(1) { height: 20%; width: 90%; background-color: #FF6347; }
.pyramid-graphic.pyramid-1 .pyramid-segment:nth-child(2) { height: 25%; width: 70%; background-color: #FFD700; }
.pyramid-graphic.pyramid-1 .pyramid-segment:nth-child(3) { height: 30%; width: 50%; background-color: #87CEEB; }
.pyramid-graphic.pyramid-1 .pyramid-segment:nth-child(4) { height: 25%; width: 30%; background-color: #2E8B57; }

.pyramid-graphic.pyramid-2 .pyramid-segment:nth-child(1) { height: 15%; width: 95%; background-color: #FFD700; }
.pyramid-graphic.pyramid-2 .pyramid-segment:nth-child(2) { height: 20%; width: 80%; background-color: #FF6347; }
.pyramid-graphic.pyramid-2 .pyramid-segment:nth-child(3) { height: 30%; width: 60%; background-color: #87CEEB; }
.pyramid-graphic.pyramid-2 .pyramid-segment:nth-child(4) { height: 35%; width: 40%; background-color: #2E8B57; }

.food-category-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.food-category-card:hover {
    background-color: #f0fdf6;
}

.food-category-icon {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 1rem;
}

.hydration-graphic {
    width: 100px;
    height: 150px;
    border: 2px solid #87CEEB;
    border-radius: 0 0 50px 50px / 0 0 20px 20px;
    position: relative;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.water-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #87CEEB;
    opacity: 0.7;
}

.water-drop-icon {
    font-size: 3rem;
    color: #87CEEB;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.accordion .card-header {
    background-color: #f0fdf6;
    border-bottom: 1px solid #e0e0e0;
}

.accordion .btn-link {
    color: #2E8B57;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.25rem;
}

.accordion .btn-link:hover {
    color: #FFD700;
}

.accordion .card-body {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 1040;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner .btn {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.cookie-banner .btn-accept {
    background-color: #2E8B57;
    border-color: #2E8B57;
    color: #fff;
}

.cookie-banner .btn-accept:hover {
    background-color: #FFD700;
    border-color: #FFD700;
}

.cookie-banner .btn-reject {
    background-color: #FF6347;
    border-color: #FF6347;
    color: #fff;
}

.cookie-banner .btn-reject:hover {
    background-color: #cc4f38;
    border-color: #cc4f38;
}

.cookie-banner .btn-info-more {
    background-color: #87CEEB;
    border-color: #87CEEB;
    color: #fff;
}

.cookie-banner .btn-info-more:hover {
    background-color: #6fb2d4;
    border-color: #6fb2d4;
}

.footer {
    background-color: #2E8B57;
    color: #fff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.disclaimer-block {
    background-color: #fff3cd;
    border-left: 5px solid #ffeeba;
    padding: 1rem;
    margin-top: 2rem;
    color: #856404;
    font-size: 0.9rem;
}

.blog-post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-post-section {
    padding: 3rem 0;
}

.blog-post-section:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.blog-post-section:nth-of-type(even) {
    background-color: #e6f4ed;
}

.blog-post-section .row {
    align-items: center;
}

.blog-post-section h2 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.blog-post-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .navbar-nav .nav-link {
        margin-left: 0;
        text-align: center;
    }
    .section-padding {
        padding: 2rem 0;
    }
    .pyramid-graphic {
        max-width: 200px;
        height: 180px;
    }
    .blog-post-section .row {
        flex-direction: column;
    }
    .blog-post-section .col-md-6 {
        margin-bottom: 2rem;
    }
}
