/* ===== FOOTER STYLES ===== */
.main-footer {
    background: #111;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== FLEXBOX LAYOUT FOR PERFECT ALIGNMENT ===== */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

/* ===== SOCIAL ICONS (Left) ===== */
.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a img {
        width: 24px;
        height: 24px;
        transition: transform 0.2s;
    }

        .footer-social a img:hover {
            transform: scale(1.1);
        }

/* ===== CENTERED BRANDING & COPYRIGHT ===== */
.footer-branding {
    text-align: center;
    flex: 1;
}

    .footer-branding img {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .footer-branding p {
        font-size: 14px;
        margin: 0;
    }

/* ===== LEGAL LINKS (Right) ===== */
.footer-legal {
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
    text-align: right;
}

.disclaimer-heading {
    color: #ff0000;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-legal li {
        margin: 5px 0;
    }

    .footer-legal a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
    }

        .footer-legal a:hover {
            text-decoration: underline;
        }

/* ===== DISCLAIMER ===== */
.footer-disclaimer {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1.0;
    margin-top: 10px;
    background-color: yellow; /* Adds a yellow background */
    color: black; /* Changes text color to yellow */
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .footer-social, .footer-legal { /* Hides Social Icons and Legal Links */
        display: none;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-disclaimer {
        max-width: 400px;
        text-align: center;
        padding: 10px;
    }
}

