/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #EFF6FF;
}
#map {
    height: 400px;
    width: 100%;
}

/* Animation for the hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-gradient-to-r {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Transition for FAQ answers */
.faq-answer {
    transition: all 0.3s ease;
}