.footer-section {
    width: 100%;
    margin-top: 30px;
    padding: 40px 20px 0 20px;
    background: linear-gradient(135deg, #04843c, #eb2129);
    color: var(--white-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-content {
    margin: 20px;
    min-width: 250px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-ul {
    list-style: none;
    padding: 0;
}

.footer-li {
    margin-bottom: 10px;
}

.footer-a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out;
}

.footer-a:hover {
    color: var(--vista-blue-color);
}

.footer-btn {
    display: inline-block;
    background-color: var(--white-color);
    color: var(--primary-bg-color);
    border: 2px solid var(--white-color);
    border-radius: 8px;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.footer-btn:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.footer-input {
    padding: 10px;
    border: none;
    width: 80%;
    font-size: 16px;
    border-radius: 8px;
    margin-right: 5px;
}

.input-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
}

.footer-form {
    margin-top: 20px;
}

.footer-contacts {
    margin: 30px 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-icon {
    width: 20px;
    height: 20px;
}

.footer-icon:hover {
    filter: grayscale(50%);
}

.social-media-icons {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-text {
    font-size: 12px;
    text-align: center;
    padding: 5px;
}

.footer-text a {
    color: var(--white-color);
}

.footer-text a:hover {
    color: var(--vista-blue-color);
}

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

    .footer-content {
        text-align: center;
    }

    .input-box {
        flex-direction: column;
        width: 100%;
    }

    .footer-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-btn {
        width: 100%;
    }
}