/* Footer Styles */
.main-footer {
    background-color: #0D4291;
    /* Match problem cards or similar dark blue */
    color: white;
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.branding-col {
    max-width: 350px;
}

.nav-col {
    max-width: 200px;
}

.contact-col {
    max-width: 300px;
}

.social-col {
    max-width: 200px;
}

/* Branding */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-desc {
    font-size: 14px;
    line-height: 160%;
    opacity: 0.9;
}

/* Headings */
.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 140%;
    opacity: 0.9;
}

.contact-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Social */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons a:hover img {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom strong {
    font-weight: 700;
    color: white;
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-col {
        max-width: 100%;
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}