body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #333;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.container {
    max-width: 1300px;
    padding-left: 15px;
    padding-right: 15px;
}

.header-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #A8DADC;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333 !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EE964B !important;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-spacing {
    padding: 80px 0;
}

.bg-light-blue {
    background-color: #A8DADC;
}

.bg-light-yellow {
    background-color: #F4D35E;
}

.bg-light-orange {
    background-color: #EE964B;
}

.bg-light-green {
    background-color: #5E9E8B;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-primary {
    background-color: #EE964B;
    border-color: #EE964B;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #F4D35E;
    border-color: #F4D35E;
}

.btn-secondary {
    background-color: #5E9E8B;
    border-color: #5E9E8B;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #A8DADC;
    border-color: #A8DADC;
}

.footer {
    background-color: #333;
    color: #f8f9fa;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #A8DADC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #EE964B;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1050;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cookie-banner p {
    margin-bottom: 10px;
    flex-basis: 100%;
}

.cookie-banner .btn {
    margin: 5px;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion .card-header {
    background-color: #A8DADC;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.accordion .btn-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: .75rem 1.25rem;
}

.accordion .btn-link:hover {
    color: #EE964B;
}

.accordion .card-body {
    background-color: #fefefe;
}

.icon-css {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F4D35E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.icon-css.green {
    background-color: #5E9E8B;
}

.icon-css.orange {
    background-color: #EE964B;
}

.nutrition-label-graphic {
    border: 2px solid #333;
    padding: 15px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.nutrition-label-graphic h4 {
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.nutrition-label-graphic div {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px dashed #ccc;
}

.nutrition-label-graphic div:last-of-type {
    border-bottom: none;
}

.water-drop-graphic {
    width: 60px;
    height: 60px;
    background-color: #A8DADC;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.water-drop-graphic::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #A8DADC;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    transform: rotate(45deg);
    opacity: 0.7;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    .section-spacing {
        padding: 50px 0;
    }
    .cookie-banner p {
        margin-bottom: 15px;
    }
    .cookie-banner .btn {
        flex-basis: 100%;
    }
}
