html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto;
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #3498db;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logos img {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    display: block;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.payment-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    background-color: #3498db;
    color: white;
}

.footer-copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .payment-logos {
        justify-content: center;
    }

    .payment-logos img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .payment-logos img {
        height: 30px;
        margin: 5px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

