body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #00264d 0%, #004aad 50%, #0078d7 100%);
    min-height: 75vh;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.text-accent {
    color: #00bfff;
}

.hero-section .btn-light {
    color: #004aad;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .hero-section .btn-light:hover {
        background-color: #e6f0ff;
        transform: translateY(-3px);
    }

/* --- FEATURES --- */
.features-section {
    background-color: #ffffff;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #e9f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0061f2;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
    background-color: #0061f2;
    color: #fff;
    transform: scale(1.1);
}

.feature-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

/* --- BENEFITS --- */
.benefits-section ul {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.benefits-section .list-group-item {
    font-size: 1.05rem;
    color: #333;
}

/* --- CONTACT --- */
.contact-section {
    background: linear-gradient(135deg, #004aad, #0078d7);
    color: #fff;
}

.btn-accent {
    background-color: #00bfff;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        background-color: #009fda;
        transform: translateY(-2px);
    }

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
