body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #F8F8F8;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: #005A5A; /* Teal */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.navbar {
    background-color: #E0F2F1 !important; /* Lighter Teal/Mint Green */
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    color: #005A5A !important;
    font-weight: bold;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: #005A5A !important;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #FF8C42 !important; /* Soft Orange */
}

.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 90, 90, 0.5); /* Teal overlay */
    padding: 20px;
    border-radius: 8px;
}

.hero-content h1 {
    color: #FFFFFF;
}

.section-padding {
    padding: 4rem 0;
}

.bg-cream {
    background-color: #FDF8F0; /* Cream White */
}

.bg-mint {
    background-color: #E0F2F1; /* Mint Green */
}

.btn-primary {
    background-color: #005A5A; /* Teal */
    border-color: #005A5A;
}

.btn-primary:hover {
    background-color: #004545;
    border-color: #004545;
}

.btn-info {
    background-color: #FF8C42; /* Soft Orange */
    border-color: #FF8C42;
    color: #fff;
}

.btn-info:hover {
    background-color: #E67A3B;
    border-color: #E67A3B;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,.1);
}

.card-title {
    color: #005A5A;
}

.icon-box {
    text-align: center;
    padding: 20px;
}

.icon-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #E0F2F1; /* Mint Green */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #005A5A;
}

.icon-leaf::before {
    content: '🌿';
}
.icon-water::before {
    content: '💧';
}
.icon-plate::before {
    content: '🍽️';
}
.icon-energy::before {
    content: '⚡';
}
.icon-sleep::before {
    content: '😴';
}
.icon-focus::before {
    content: '🧠';
}
.icon-fruit::before {
    content: '🍎';
}
.icon-veg::before {
    content: '🥦';
}
.icon-grain::before {
    content: '🌾';
}
.icon-protein::before {
    content: '💪';
}
.icon-vitamin::before {
    content: '💊';
}
.icon-mineral::before {
    content: '💎';
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #005A5A;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 15px;
    width: 12px;
    height: 12px;
    background: #FF8C42;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 48%;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
}

.accordion .card-header {
    background-color: #E0F2F1;
    border-bottom: 1px solid #005A5A;
}

.accordion .btn-link {
    color: #005A5A;
    font-weight: bold;
    text-decoration: none;
}

.accordion .btn-link:hover {
    color: #FF8C42;
}

.disclaimer-section {
    background-color: #FDF8F0;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #005A5A;
}

.footer {
    background-color: #005A5A;
    color: #E0F2F1;
}

.footer a {
    color: #E0F2F1;
    text-decoration: none;
}

.footer a:hover {
    color: #FF8C42;
}

.footer-disclaimer {
    font-weight: bold;
    color: #FDF8F0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #005A5A;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cookie-banner p {
    margin-bottom: 10px;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.cookie-buttons .btn-accept {
    background-color: #E0F2F1;
    color: #005A5A;
    border: none;
}

.cookie-buttons .btn-accept:hover {
    background-color: #C1E0DF;
}

.cookie-buttons .btn-refuse {
    background-color: #FF8C42;
    color: #fff;
    border: none;
}

.cookie-buttons .btn-refuse:hover {
    background-color: #E67A3B;
}

.cookie-buttons .btn-learn-more {
    background-color: transparent;
    color: #E0F2F1;
    border: 1px solid #E0F2F1;
}

.cookie-buttons .btn-learn-more:hover {
    background-color: #E0F2F1;
    color: #005A5A;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin: 15px;
    color: #005A5A;
}

.blog-card p {
    font-size: 0.95rem;
    margin: 0 15px 15px;
    flex-grow: 1;
}

.blog-card .btn {
    margin: 0 15px 15px;
    align-self: flex-start;
}

.content-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    margin-bottom: 30px;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.two-column-layout .text-content, .two-column-layout .image-content {
    flex: 1;
}

.two-column-layout img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .hero-section {
        height: 70vh;
    }
    .two-column-layout {
        flex-direction: row;
    }
    .timeline::before {
        left: 50%;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
        padding-right: 30px;
        margin-left: 0;
        margin-right: 50%;
    }
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-left: 30px;
        margin-right: 0;
        margin-left: 50%;
    }
    .timeline-item::after {
        left: 50%;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-item::after {
        left: 20px;
        top: 0;
    }
    .timeline-item .timeline-content {
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }
    .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        padding-right: 15px;
    }
}
