body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding-top: 56px; /* For fixed header */
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', Gadget, sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #82E0AA;
    text-decoration: none;
}

a:hover {
    color: #6CBF90;
    text-decoration: underline;
}

.btn-primary {
    background-color: #82E0AA;
    border-color: #82E0AA;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6CBF90;
    border-color: #6CBF90;
    color: #fff;
}

.bg-primary-light {
    background-color: #e0f7e9; /* Lightened Verde mentă */
}

.text-primary-dark {
    color: #2c3e50;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.navbar-brand {
    font-weight: bold;
    color: #82E0AA !important;
    font-size: 1.8rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #82E0AA !important;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 15px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-padding {
    padding: 60px 0;
}

.section-bg-light {
    background-color: #f0f4f7;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #82E0AA;
}

.footer a:hover {
    color: #6CBF90;
}

.policy-links a {
    display: block;
    margin-bottom: 5px;
}

/* Cookie Banner */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1050;
    display: none; /* Hidden by default */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookieConsentBanner p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#cookieConsentBanner .btn {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
}

#cookieConsentBanner .btn-accept {
    background-color: #82E0AA;
    border-color: #82E0AA;
    color: #fff;
}

#cookieConsentBanner .btn-accept:hover {
    background-color: #6CBF90;
    border-color: #6CBF90;
}

#cookieConsentBanner .btn-decline {
    background-color: #E67E22;
    border-color: #E67E22;
    color: #fff;
}

#cookieConsentBanner .btn-decline:hover {
    background-color: #D35400;
    border-color: #D35400;
}

#cookieConsentBanner .btn-learn-more {
    background-color: #AED6F1;
    border-color: #AED6F1;
    color: #333;
}

#cookieConsentBanner .btn-learn-more:hover {
    background-color: #92BBDD;
    border-color: #92BBDD;
}

/* Custom CSS for specific sections */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}
.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #AED6F1;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    margin-bottom: 20px;
    position: relative;
}
.timeline-item:after {
    clear: both;
    content: '';
    display: table;
}
.timeline-item-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    position: relative;
}
.timeline-item-content h3 {
    color: #82E0AA;
}
.timeline-item-content:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline-item:nth-child(odd) .timeline-item-content {
    margin-right: 50%;
}
.timeline-item:nth-child(odd) .timeline-item-content:before {
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-item-content {
    margin-left: 50%;
}
.timeline-item:nth-child(even) .timeline-item-content:before {
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    left: -10px;
}
.timeline-item-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    background: #E67E22;
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .timeline:before {
        left: 15px;
    }
    .timeline-item-dot {
        left: 15px;
        margin-left: -8px;
    }
    .timeline-item:nth-child(odd) .timeline-item-content, 
    .timeline-item:nth-child(even) .timeline-item-content {
        margin-left: 45px;
        margin-right: 0;
    }
    .timeline-item:nth-child(odd) .timeline-item-content:before {
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
        left: -10px;
        right: auto;
    }
    .timeline-item:nth-child(even) .timeline-item-content:before {
        left: -10px;
    }
}

/* Macronutrients CSS Diagrams */
.macro-diagram-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.macro-diagram {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.macro-diagram:hover {
    transform: translateY(-5px);
}
.macro-diagram.carbs {
    background-color: #E67E22;
}
.macro-diagram.proteins {
    background-color: #82E0AA;
}
.macro-diagram.fats {
    background-color: #F5DEB3;
    color: #333;
}
.macro-diagram h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.macro-diagram.fats h4 {
    color: #333;
}
.macro-diagram p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Seasonal Eating Icons */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}
.seasonal-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    transition: transform 0.3s ease;
}
.seasonal-item:hover {
    transform: translateY(-5px);
}
.seasonal-item .icon {
    font-size: 3rem;
    color: #82E0AA;
    margin-bottom: 10px;
}

/* Hydration Infographic (simple CSS) */
.hydration-infographic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.hydration-bar {
    width: 80%;
    max-width: 400px;
    height: 30px;
    background-color: #AED6F1;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.hydration-level {
    height: 100%;
    width: 75%; /* Example: 75% hydrated */
    background-color: #82E0AA;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}
.hydration-text {
    font-size: 1.1rem;
    color: #2c3e50;
    text-align: center;
}

/* FAQ Accordion */
.accordion .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
}
.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.accordion .btn-link:hover {
    color: #82E0AA;
}
.accordion .card-body {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    padding: 20px;
}

/* Blog Card Icon */
.blog-card-icon {
    font-size: 2.5rem;
    color: #E67E22;
    margin-bottom: 15px;
}

/* Blog page specific styles */
.blog-article-thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.blog-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.blog-list-item-content h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}
.blog-list-item-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* General image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.img-small {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .hero-section {
        padding: 80px 15px;
        min-height: 300px;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .img-small {
        max-width: 80%;
    }
    .macro-diagram {
        width: 150px;
        height: 150px;
    }
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    .hydration-bar {
        width: 95%;
    }
    .blog-list-item {
        flex-direction: column;
        text-align: center;
    }
    .blog-article-thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
