footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 14px;
}

/* Flexbox for better alignment */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links li {
    display: inline-block;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Secure Payment Section */
.payment-security {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.payment-security img {
    max-width: 200px;
    height: auto;
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}
.list-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.list-payment__item {
    display: flex;
    align-items: center;
}

.list-payment__item svg {
    height: 28px; /* Slightly larger for visibility */
    width: auto;
}
footer a {
    color: white !important; /* Ensures all links in the footer are white */
    text-decoration: none; /* Removes underline for a clean look */
}

footer a:hover {
    text-decoration: underline; /* Adds underline on hover for accessibility */
}
.policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.policies a {
    color: white; /* Keeps it consistent with the footer style */
    text-decoration: none;
    font-size: 13px;
}

.policies a:hover {
    text-decoration: underline;
}
