@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f5f9fa;
}

.scholarship-card, 
.bg-white {
    background-color: white;
}
/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom button styles */
.btn-primary {
    background-color: #e7a021;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d1911d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #06354C;
    color: #06354C;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #06354C;
    color: white;
}

/* Scholarship card styles */
.scholarship-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.scholarship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}