/* Custom Styles for MIFA */
:root {
    --bs-primary: #0d6efd; /* Adjust to match MIFA Blue */
    --bs-secondary: #6c757d;
}

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

.navbar-brand {
    font-size: 1.5rem;
}

.hero-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-weight: bold;
    margin-bottom: 2rem;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}
