/* Main Footer Styles */
.main-footer {
    background: #000000 !important;
    color: #FFFFFF !important;
    padding: 50px 0 30px !important;
    font-family: 'Open Sans', sans-serif !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Footer Content: Logo and Quick Links section */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 200px;
    margin-bottom: 40px;
    width: 100%;
}

/* Footer Logo - Column 1 */
.footer-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 200px;
}

/* Quick Links Section - Contains header and columns */
.footer-quick-links-section {
    flex: 1 1 auto;
    min-width: 0;
}

/* Footer Links Wrapper - Contains Columns A and B */
.footer-links-wrapper {
    display: flex;
    gap: 200px;
    justify-content: flex-start;
    width: 100%;
}

/* Quick Links Section - Columns A and B */
.footer-quick-links {
    text-align: left;
    flex: 1 1 auto;
}

.footer-column-a {
    flex: 0 1 auto;
    min-width: 0;
}

.footer-column-b {
    flex: 0 1 auto;
    min-width: 0;
}

.quick-links-title {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
}

.quick-links-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
}

/* Ensure columns align at the top */
.footer-column-a .quick-links-column,
.footer-column-b .quick-links-column {
    align-items: flex-start;
}

/* Footer Links */
.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.footer-link:hover {
    opacity: 0.7;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-link.disabled {
    color: #666666;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-link.disabled:hover {
    opacity: 0.5;
    color: #666666;
    cursor: not-allowed;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .main-footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    /* Logo on top, centered */
    .footer-logo {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 0;
        justify-content: center;
    }

    .footer-logo img {
        height: 60px;
        max-width: 150px;
    }

    /* Quick Links Section */
    .footer-quick-links-section {
        width: 100%;
    }

    /* Links wrapper keeps columns A and B side by side */
    .footer-links-wrapper {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
    }

    .footer-column-a {
        flex: 1 1 calc(50% - 10px);
    }

    .footer-column-b {
        flex: 1 1 calc(50% - 10px);
    }

    .quick-links-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: left;
    }

    .footer-link {
        font-size: 18px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 14px;
    }
}



@media screen and (max-width: 480px) {
    .quick-links-title {
        font-size: 22px;
        text-align: left;
    }

    /* Keep columns side by side even on small mobile */
    .footer-column-a,
    .footer-column-b {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }

    .footer-link {
        font-size: 16px;
    }

    .footer-copyright {
        margin-top: 25px;
        padding-top: 15px;
    }

    .footer-copyright p {
        font-size: 13px;
    }
}

