/* Custom section spacing for the landing page layouts */
/* Enhanced section spacing for better responsive rhythm */
.home-section {
    padding: 5rem 0;
}

.transition-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transition-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 768px) {
    .home-section {
        padding: 3rem 0;
    }
}