* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========== FOOTER ========== */
footer {
    background: linear-gradient(to right, #1b1a57, #35356d);
    color: white;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer a{
    text-decoration: none;
    color: aliceblue;
}

footer a:hover{
    text-decoration: none;
    color: rgba(134, 98, 180, 0.945);
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 20px; 
    font-size: 14px;
    text-align: center;
}


.footer-bottom-content p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 799px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-news,
    .footer-partners {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-news input[type="email"] {
        max-width: 100%;
    }

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

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

}
