/* Social Links Styling */

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

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

.social-links a:hover {
    background: #0f2f2a;
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: white;
}

@media (max-width: 768px) {
    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }
}
