.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background-color: var(--social-bg);
    color: var(--header-text);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    background-color: var(--social-hover-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link img {
    width: 2em;
    height: 2em;
}