body {
    font-family: 'Open Sans', sans-serif;
    background-color: #E0F2F7;
    color: #333;
    line-height: 1.6;
    margin-top: 56px; /* Adjust for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #2196F3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.navbar {
    background-color: #E0F2F7;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 700;
    color: #4CAF50 !important;
    font-size: 1.8rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #2196F3 !important;
}

.hero-section {
    background-color: #E0F2F7;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(224, 242, 247, 0.8), rgba(224, 242, 247, 0.8));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section-padding {
    padding: 4rem 0;
}

.section-bg-light {
    background-color: #F8FCFD;
}

.section-bg-accent {
    background-color: #D6EEF5;
}

.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.card-title {
    color: #2196F3;
    font-weight: 600;
}

.btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

.btn-info {
    background-color: #2196F3;
    border-color: #2196F3;
}

.btn-info:hover {
    background-color: #1976D2;
    border-color: #1976D2;
}

.btn-warning {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #333;
}

.btn-warning:hover {
    background-color: #FFA000;
    border-color: #FFA000;
}

.footer {
    background-color: #2196F3;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFC107;
}

.compliance-block {
    background-color: #F0F8FA;
    border-top: 1px solid #D6EEF5;
    border-bottom: 1px solid #D6EEF5;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    z-index: 1050;
    display: none;
}

.cookie-consent p {
    margin-bottom: 0.5rem;
}

.cookie-consent .btn {
    margin: 0.25rem;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.two-column-layout .text-content, .two-column-layout .image-content {
    width: 100%;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .two-column-layout {
        flex-direction: row;
        text-align: left;
    }
    .two-column-layout.reverse-columns {
        flex-direction: row-reverse;
    }
    .two-column-layout .text-content, .two-column-layout .image-content {
        width: 50%;
    }
}

.image-full-width {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.icon-list-item::before {
    content: '✓'; /* Example icon, can be replaced with actual CSS icon */
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #F8FCFD;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.faq-question {
    font-weight: 600;
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.blog-card-icon {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-entry-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.cta-section {
    background-color: #4CAF50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section .btn {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #333;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
}

.cta-section .btn:hover {
    background-color: #FFA000;
    border-color: #FFA000;
}
