/* Social Media Styling for Citima Legal */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #4a3f35;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media a:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    text-decoration: none;
}

.social-media i {
    font-size: 18px;
}

/* Styling for footer social section */
.footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    /* Match styling with other footer sections */
}

.footer-social h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media {
        justify-content: center;
    }

    .footer-social {
        text-align: center;
        padding: 0 10px;
        margin-bottom: 20px;
    }
}