/* Specific styling for the Homepage */
.hero-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.school-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #dee2e6;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #0d6efd; /* Bootstrap Primary Blue */
}

.school-card h5 {
    color: #212529;
    font-weight: 600;
}
