/* Custom styles that complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('http://static.photos/education/1200x630/4');
    background-size: cover;
    background-position: center;
}

/* Animation for cards */
article {
    transition: transform 0.3s ease;
}

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

/* Responsive tweaks */
@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem;
    }
}