body {
    font-family: 'Inter';
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

:focus-visible {
    outline: 3px solid var(--bs-primary);
    outline-offset: 2px;
}

header {
    background: rgba(30, 58, 95, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1030;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    color: #fff !important;
}

#hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #34495e 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Adjust for fixed header */
}

#hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

#hero-section .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#hero-section .hero-cta {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

#hero-section .hero-cta:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(40, 167, 69, 0.4);
}

#hero-section .img-fluid {
    max-width: 100%;
    height: auto;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-primary {
    color: #007bff !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.feature-card, .benefit-card, .bonus-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.feature-card:hover, .benefit-card:hover, .bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

#cta-section-1 {
    background: linear-gradient(90deg, #34495e 0%, #2c3e50 100%);
}

#cta-section-1 .cta-btn-secondary {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

#cta-section-1 .cta-btn-secondary:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 193, 7, 0.4);
}

#cta-section-2 {
    background-color: #f0f2f5;
}

#cta-section-2 .hero-cta {
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

#cta-section-2 .hero-cta:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 123, 255, 0.4);
}

footer {
    background-color: #212529 !important;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    #hero-section {
        text-align: center;
    }
    #hero-section h1 {
        font-size: 2.5rem;
    }
    #hero-section .text-lg-start, #cta-section-1 .text-lg-start, #cta-section-2 .text-lg-start {
        text-align: center !important;
    }
    header .nav {
        flex-direction: column;
        align-items: flex-end;
    }
    header .nav-item {
        padding: 0;
    }
    header .nav-link {
        padding: 0.25rem 0.5rem;
    }
}