/* Global Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f4c542;
    margin-bottom: 20px;
}

.footer p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #fff;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #f4c542;
}

.footer .contact-info i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.footer .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #ccc;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 767px) {
    .footer .footer-bottom {
        font-size: 0.9rem;
    }

    .footer .social-icons a {
        font-size: 1.2rem;
        margin: 0 8px;
    }

    .footer .contact-info i {
        font-size: 1rem;
    }

    /* Stack columns on mobile devices */
    .footer .row > div {
        margin-bottom: 30px;
    }
}
