#footer-default {
    background: #f5f5f5;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    border-top: 1px solid #f1f1f1;
    border-color: rgba(255, 255, 255, 0.1);
}

#footer-default .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

#footer-default .footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

    #footer-default .footer-col ul li {
        margin-bottom: 10px;
    }

#footer-default .footer-col a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

    #footer-default .footer-col a:hover {
        color: #000;
    }

/* Bottom section */
#footer-default .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

    #footer-default .footer-bottom h4 {
        margin-bottom: 10px;
    }

#footer-default .icons a {
    margin-right: 10px;
    background: #ddd;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
}

#footer-default .badges img {
    height: 40px;
    margin-right: 10px;
}

/* Legal */
    #footer-default .footer-legal {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: #777;
        border-top: 1px solid #f1f1f1;
        border-color: rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

        #footer-default .footer-legal a {
            color: #555;
            text-decoration: none;
        }

            #footer-default .footer-legal a:hover {
                text-decoration: underline;
            }
    /* Brand column */
    #footer-default .footer-brand img {
        max-width: 140px;
    }

    /* Contact info */
    #footer-default .footer-contact p {
        font-size: 14px;
        margin-bottom: 8px;
        color: #555;
        display: flex;
        align-items: center;
    }

    #footer-default .footer-contact i {
        margin-right: 8px;
        color: #666;
        font-size: 14px;
    }

    /* Socials */
    #footer-default .footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-right: 8px;
        border-radius: 8px;
        background: #e9ecef;
        color: #333;
        transition: all 0.25s ease;
        text-decoration: none;
    }

        #footer-default .footer-socials a:hover {
            background: #0d6efd;
            color: #fff;
            transform: translateY(-2px);
        }
/* Responsive */
@media (max-width: 768px) {
    #footer-default .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    #footer-default .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    #footer-default .footer-container {
        grid-template-columns: 1fr;
    }
}
