/* General Styles */
body {
    font-family: 'Lora', serif; /* Body text */
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8; /* Soft background */
    margin-top: 56px; /* Space for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Titles */
    color: #004d40; /* Deep Ocean Blue for titles */
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

a {
    color: #00796b; /* Light Teal for links */
    text-decoration: none;
}

a:hover {
    color: #004d40; /* Deep Ocean Blue on hover */
    text-decoration: underline;
}

.container {
    max-width: 1200px; /* Wider container */
    padding-left: 15px;
    padding-right: 15px;
}

/* Header */
.navbar {
    background-color: #00796b; /* Light Teal */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff !important;
    font-size: 1.8rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a7ffeb !important; /* Lighter teal on hover */
}

/* Sections */
.section-padding {
    padding: 60px 0;
}

.bg-light-teal {
    background-color: #e0f2f1; /* Lighter shade of Light Teal */
}

.bg-warm-sand {
    background-color: #f5f5dc; /* Warm Sand */
}

.bg-soft-coral {
    background-color: #ffefed; /* Soft Coral */
}

/* Buttons */
.btn-primary {
    background-color: #00796b; /* Light Teal */
    border-color: #00796b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #004d40; /* Deep Ocean Blue */
    border-color: #004d40;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Block */
.hero-block {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%; /* Ensure cards in a row have equal height */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #004d40;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

/* Image Styling */
.img-fluid-section {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure no extra space below image */
}

/* Two-column layout */
.two-column-section .row {
    align-items: center;
}

/* CSS Graphics for icons */
.icon-circle-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00796b; /* Light Teal */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-square-small {
    width: 40px;
    height: 40px;
    background-color: #00796b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-pyramid {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #00796b;
    margin: 0 auto 20px auto;
    position: relative;
}
.icon-pyramid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 80px;
    height: 10px;
    background-color: #004d40; /* Deep Ocean Blue for base */
    transform: translateX(50%);
}

/* Accordion */
.accordion .card-header {
    background-color: #f0fdfc; /* Very light teal */
    border-bottom: 1px solid #e0f2f1;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #004d40;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .btn-link:hover {
    background-color: #e0f2f1;
    text-decoration: none;
}

.accordion-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}
.accordion-icon.collapsed::before {
    content: '+';
}
.accordion-icon:not(.collapsed)::before {
    content: '-';
}

.accordion .card-body {
    background-color: #fff;
    border-top: 1px solid #e0f2f1;
    padding: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #00796b;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    padding: 10px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-item-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-item-content::before {
    right: -10px;
    border-left: 10px solid #fff;
}

.timeline-item:nth-child(even) .timeline-item-content::before {
    left: -10px;
    border-right: 10px solid #fff;
}

.timeline-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #004d40; /* Deep Ocean Blue */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    z-index: 1;
    box-shadow: 0 0 0 3px #e0f2f1; /* Light Teal border */
    font-weight: bold;
}

.timeline-item:nth-child(odd) .timeline-item-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-item-icon {
    left: -20px;
}

/* Tables */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table {
    margin-bottom: 0;
    background-color: #fff;
}

.table thead th {
    background-color: #00796b; /* Light Teal */
    color: #fff;
    border-color: #004d40;
    font-weight: 600;
}

.table tbody tr:nth-of-type(odd) {
    background-color: #f0fdfc; /* Very light teal */
}

.table tbody tr:hover {
    background-color: #e0f2f1; /* Lighter teal on hover */
}

/* Footer */
footer {
    background-color: #004d40; /* Deep Ocean Blue */
    color: #e0f2f1; /* Light Teal text */
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

footer a {
    color: #a7ffeb; /* Lighter teal for footer links */
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

/* Cookie Banner */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none; /* Hidden by default */
}

#cookieConsentBanner p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

#cookieConsentBanner .btn {
    margin: 5px;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 4px;
}

#cookieConsentBanner .btn-accept {
    background-color: #00796b;
    border-color: #00796b;
    color: #fff;
}

#cookieConsentBanner .btn-accept:hover {
    background-color: #004d40;
    border-color: #004d40;
}

#cookieConsentBanner .btn-decline {
    background-color: #ffefed; /* Soft Coral */
    border-color: #ffefed;
    color: #004d40;
}

#cookieConsentBanner .btn-decline:hover {
    background-color: #f5f5dc; /* Warm Sand */
    border-color: #f5f5dc;
}

#cookieConsentBanner .btn-learn-more {
    background-color: transparent;
    border: 1px solid #a7ffeb;
    color: #a7ffeb;
}

#cookieConsentBanner .btn-learn-more:hover {
    background-color: #a7ffeb;
    color: #004d40;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .hero-block {
        padding: 80px 0;
        min-height: 300px;
    }
    .timeline::before {
        left: 18px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-item-icon {
        left: 0 !important;
        margin-left: -2px;
    }
    .timeline-item-content::before {
        left: 50px !important;
        border-right: 10px solid #fff !important;
        border-left: none !important;
    }
}
