﻿/* --------------- Footer Section --------------- */
.footer-section {
    background-color: #003b5c;
    color: white;
    padding: 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-left p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-links a {
        color: #eee;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #e65c0d;
        }

.footer-social a {
    color: white;
    margin-left: 0.75rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .footer-social a:hover {
        color: #e65c0d;
        transform: scale(1.2);
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin-top: 1rem;
    }
}
