@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #ec8620;
    --transition-fast: all 0.2s ease;
    --border-radius: 6px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #ff800019;
}

footer p {
    font-size: 12px !important;
    font-family: Montserrat, sans-serif !important;
}

footer strong {
    font-size: 12px !important;
    font-family: Montserrat, sans-serif !important;
}

.footer-container {
    font-size: 12px !important;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 400px;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-link {
    font-family: Montserrat, sans-serif !important;
    text-decoration: none;
    width: 150px;
    color: #000;
    transition: var(--transition-fast);
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

.footer-link:hover {
    color: var(--primary-color);
    background: rgba(236, 134, 32, 0.1);
    transform: translateX(5px);
}

.footer-copyright {
    font-family: Montserrat, sans-serif !important;
    font-size: 12px;
    color: #000;
    margin-top: 40px;
}

.footer-disclaimers {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
    padding: 25px 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #6c757d;
}

.disclaimer-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
    padding: 25px 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #6c757d;
}

.disclaimer-section h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.disclaimer-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.disclaimer-section strong {
    color: #495057;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-link {
        width: 100%;
    }

    .footer-copyright {
        margin-top: 10px;
    }

    .footer-disclaimers {
        margin-top: 20px;
        padding: 15px;
    }

    .disclaimer-section {
        margin-top: 20px;
        padding: 15px;
    }

    .disclaimer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .disclaimer-section p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
}

@media (max-width: 800px) {
    footer {
        margin-top: 0;
    }

    .footer-container {
        text-align: center;
        gap: 20px;
        margin-top: 20px;
    }

    .footer-links {
        width: 150px;
    }
}
