body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #0055a5, #0077cc);
}

.text-primary-light {
    color: #ffdd57;
}

.text-primary-dark {
    color: #003366;
}

.bg-primary-dark {
    background-color: #003366;
}

.bg-light-alt {
    background-color: #eef2f7;
}

.section-title-alt {
    font-size: 2rem;
    font-weight: 600;
    color: #0055a5;
}

.package-card .card-header {
    font-size: 1.25rem;
    font-weight: 600;
}

.package-features li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.custom-btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
}

.animate-up, .animate-left, .animate-right, .animate-zoom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}
