.footer {
    margin-top: 5rem;
    background-color: #1f1f1f;
    padding-bottom: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    .card {
        position: relative;
        top: -50px;
        background-color: #1f1f1f;
        color: #fff;
        padding: 1rem;
        border-radius: 9px;
        width: 700px;
        border: 7px solid #000000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        h4 {
            margin-bottom: 1rem;
            svg {
                width: 18px;
                height: 18px;
            }
        }
        @media (max-width: 600px) {
            h4 {
                font-size: 0.8rem;
                margin-bottom: 0.5rem;
            }
        }
        a {
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            span {
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
    }
    .social {
        display: flex;
        gap: 20px;
        justify-content: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
        svg {
            width: 23px;
            height: 23px;
        }
        a {
            &:first-child {
                svg {
                    path {
                        fill: #25d366; /* WhatsApp color */
                    }
                }
            }
            &:nth-child(2) {
                path {
                    fill: #1877f3; /* Facebook color */
                }
            }
            &:nth-child(3) {
                path {
                    fill: #69c9d0; /* TikTok color */
                }
            }
            &:nth-child(4) {
                path {
                    fill: #e1306c; /* Instagram color */
                }
            }
        }
    }
    @media (max-width: 600px) {
        .card {
            width: 95vw;
            min-width: 0;
            max-width: 100vw;
            padding: 1rem;
        }
    }
}
