.footer {
    background-color: #e8f0fa;
    color: #00264d;
    padding: 2rem 0;
}

.container-footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    margin-left: -10.5rem;
    gap: 1.5rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.social-icons {
    display: flex;
    margin-left: 9.7rem;
    gap: 1rem;
}

.social-link {
    color: #00264d;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.social-link .iconify {
    font-size: 1.75rem;
}

/* Quick Links */
.footer-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #00264d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-menu a:hover {
    color: #007bff;
    padding-left: 0.5rem;
}

/* Contact Info */
.contact-info p {
    display: flex;
    align-items: center;
    /* gap: 0.75rem; */
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info .iconify {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Footer Bottom */
.divider {
    height: 1px;
    background-color: #c4d4e0;
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: #00264d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #007bff;
}

.separator {
    color: #c4d4e0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .container-footer {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .container-footer {
        padding: 0 15px;
        margin-left: -3rem;
    }

    .footer-links a{
        text-decoration: underline;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container-footer {
        padding: 0 15px;
        margin-left: -3rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links a{
        text-decoration: underline;
    }

    .social-icons {
        margin-left: -5px;
        padding-left: 1.2rem;
        justify-content: flex-start;
    }

    .footer-links, .footer-contact {
        text-align: flex-start;
        margin-left: 0.5rem;
    }

    .contact-info p {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container-footer {
        padding: 0 15px;
        margin-left: -3rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        height: 80px;
    }

    .legal-links {
        flex-direction: column;
    }

    .separator {
        display: none;
    }

    .footer-links a{
        text-decoration: underline;
    }
}


@media (max-width: 992px) {
    .container-footer {
        padding: 0 15px;
        margin-left: -3rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-icons {
        margin-left: -5px;
        padding-left: 1.2rem;
        justify-content: flex-start;
    }

    .footer-links, .footer-contact {
        text-align: flex-start;
        margin-left: 0.5rem;
    }

    .footer-links a{
        text-decoration: underline;
    }

    .contact-info p {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .container-footer {
        padding: 0 20px 0px 70px;
    }

    .footer-content {
        display: grid;
        gap: 2rem;
    }

    .footer-brand {
        padding-left: 10rem;
        align-items: flex-start;
        text-align: flex-start;
    }

    .social-icons {
        margin-left: -5px;
        padding-left: 1.2rem;
        justify-content: flex-start;
    }

    .footer-links, .footer-contact {
        text-align: flex-start;
        margin-left: 0.5rem;
    }

    .contact-info p {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
