body {
    font-family: 'Arial', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #A7E9AF; /* Mint Green */
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: #333333 !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #555555 !important;
}

.btn-primary {
    background-color: #FFCC99; /* Soft Orange */
    border-color: #FFCC99;
    color: #333333;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFB366;
    border-color: #FFB366;
    color: #333333;
}

.footer {
    background-color: #333333;
    color: #F8F0E3; /* Warm Beige */
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer a {
    color: #B0E0E6; /* Light Blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ADD8E6;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #F8F0E3; /* Warm Beige */
    text-align: center;
}

.hero-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #333333;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #555555;
    margin-bottom: 1.5rem;
}

.content-block {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.bg-light-green {
    background-color: #A7E9AF;
}

.bg-warm-beige {
    background-color: #F8F0E3;
}

.bg-light-blue {
    background-color: #B0E0E6;
}

.bg-soft-orange {
    background-color: #FFCC99;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-weight: bold;
    color: #333333;
}

.card-text {
    color: #555555;
}

.img-fluid-small {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .two-column-layout {
        flex-direction: row;
        text-align: left;
    }
    .two-column-layout.reverse {
        flex-direction: row-reverse;
    }
}

.two-column-layout .text-content, .two-column-layout .image-content {
    flex: 1;
    width: 100%;
}

.two-column-layout .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
    color: #555555;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #B0E0E6;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item-content {
    background-color: #F8F0E3;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-item-content::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-item-content {
    margin-left: calc(50% + 20px);
}

.timeline-item:nth-child(odd) .timeline-item-content::before {
    left: -20px;
    border-width: 10px 20px 10px 0;
    border-color: transparent #F8F0E3 transparent transparent;
}

.timeline-item:nth-child(even) .timeline-item-content {
    margin-right: calc(50% + 20px);
}

.timeline-item:nth-child(even) .timeline-item-content::before {
    right: -20px;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #F8F0E3;
}

.timeline-item-date {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #A7E9AF;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 20px;
        transform: translateX(0);
    }
    .timeline-item:nth-child(odd) .timeline-item-content,
    .timeline-item:nth-child(even) .timeline-item-content {
        margin-left: 60px;
        margin-right: 0;
    }
    .timeline-item:nth-child(odd) .timeline-item-content::before {
        left: -20px;
        border-width: 10px 20px 10px 0;
        border-color: transparent #F8F0E3 transparent transparent;
    }
    .timeline-item:nth-child(even) .timeline-item-content::before {
        left: -20px;
        border-width: 10px 20px 10px 0;
        border-color: transparent #F8F0E3 transparent transparent;
    }
    .timeline-item-date {
        left: 20px;
        transform: translateX(-50%);
        top: 0;
        margin-top: 0.5rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Hidden by default */
}

.cookie-banner p {
    margin-bottom: 10px;
}

.cookie-banner button {
    background-color: #A7E9AF; /* Mint Green */
    color: #333333;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: #8FD89F;
}

.cookie-banner a {
    color: #B0E0E6;
    text-decoration: underline;
    margin-left: 10px;
}

.cookie-banner a:hover {
    color: #ADD8E6;
}
