/* Footer styling */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer .footer-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    /* Ensure it wraps on smaller screens */
}

.footer .footer-info div {
    display: flex;
    align-items: center;
    margin: 10px;
}

.footer .footer-info i {
    font-size: 24px;
    color: #FFA500;
    margin-right: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #FFA500;
}