    
    .social-links {
        display: flex;
        flex-direction: row;   
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    /* Facebook */
    .social-links a:nth-child(1) {
        background: #1877F2;
    }

    /* Instagram (gradient) */
    .social-links a:nth-child(2) {
        background: linear-gradient(
            45deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4
        );
    }

    .social-links svg {
        width: 18px;
        height: 18px;
        fill: white;
    }