/* Custom styles */
.course-card {
    transition: transform 0.3s ease-in-out;
}

.course-card:hover {
    transform: translateY(-5px); }

/* Form styles */
input, textarea {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 0.375rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Mobile menu animation */
@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#mobileMenu {
    animation: slideDown 0.3s ease-out;
}