/* Bootstrap 4.3.1 CDN */
@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css');

body {
    font-family: 'Lora', 'Merriweather', serif;
    color: #333;
    background-color: #F0F5F5;
    line-height: 1.6;
    margin-top: 56px; /* Adjust for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

.navbar {
    background-color: #F0F5F5;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #5DADE2 !important;
    font-size: 1.8rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2ECC71 !important;
}

.btn-primary {
    background-color: #5DADE2;
    border-color: #5DADE2;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a9bdc;
    border-color: #4a9bdc;
}

.btn-secondary {
    background-color: #2ECC71;
    border-color: #2ECC71;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #24b360;
    border-color: #24b360;
}

.btn-info {
    background-color: #FFC300;
    border-color: #FFC300;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-info:hover {
    background-color: #e6b000;
    border-color: #e6b000;
}

.hero-section {
    background-color: #F0F5F5;
    padding: 80px 0;
    text-align: center;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.section-padding {
    padding: 60px 0;
}

.bg-light-blue {
    background-color: #eaf6ff;
}

.bg-light-green {
    background-color: #e6faed;
}

.bg-light-yellow {
    background-color: #fff9e6;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #5DADE2;
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.icon-check {
    color: #2ECC71;
    font-size: 1.5rem;
    margin-right: 10px;
}

.icon-cross {
    color: #FFC300;
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer {
    background-color: #333;
    color: #F0F5F5;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #F0F5F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #5DADE2;
}

.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: 1050;
    display: none; /* Hidden by default */
}

.cookie-banner button {
    margin: 0 5px;
}

.disclaimer-block {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #856404;
    border-radius: 4px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 100px 0;
    }
}
