footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    color: #000;
    font-weight: 600;
    /* animation: slideIn 2.9s ease forwards; */
    /* opacity: 0; */
    /* animation-delay: 2.9s; */

}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 10px;
    min-width: 250px;
    text-align: right;
}

.footer-section h4 {
    font-size: 16px;
    color: #2898D5;
    margin-top: 40px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    margin: 5px 0;
}

.company-logo {
    width: 200px;
    margin-bottom: 10px;
}

a {
    color: #2898D5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.accept-payment {
    margin: 0;
}

.copyright {
    margin: 0;
}

.payment-section p {
    margin: 0 10px;
    font-size: 12px;
}

.payment-logo {
    width: 70px;
    margin-right: 5px;
    align-self: center;
    transform: translateY(3px);
}

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

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 25px;
        margin-top: 20px;
    }

    .footer-section p {
        font-size: 20px;
    }

    .company-logo {
        width: 200px;
    }

    .payment-logo {
        width: 100px;
        transform: translateY(3px);
    }

    .payment-section p {
        font-size: 15px;
    }
}

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

    .footer-section {
        text-align: center;
        padding: 5px;
        min-width: auto;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-top: 20px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .company-logo {
        width: 150px;
    }

    .payment-section {
        flex-direction: column;
        align-items: center;
        padding: 5px 0;
    }

    .payment-section p {
        font-size: 10px;
    }

    .payment-logo {
        width: 70px;
    }
}