.contact_content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.social_links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social_link img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social_link:hover {
    background: rgba(100, 255, 218, 0.1);
}

.social_link:hover img {
    opacity: 1;
}
