/* css/footer.css */

footer {
    padding: 2rem 4%; /* py-8 px-4 md:px-8 lg:px-16 */
    text-align: center;
    color: #9ca3af; /* gray-400 */
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: inset 0 4px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem; /* Space from courses section */
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 2%;
        border-radius: 0; /* Remove rounded corners on small screens */
    }
    footer p {
        font-size: 0.8rem;
    }
}
