.footer-section {
    background-color: #000080;
    color: white;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 15px;
    text-align: center;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.footer-social-links img {
    height: 24px;
    filter: invert(100%);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    color: white;
    padding: 10px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
    }
}

.footer-social-links i {
    font-size: 24px; /* Adjust to make the icons bigger */
    color: white;
    padding: 10px;
}

.footer-links a {
    font-size: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-copyright {
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}