.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 127, 65, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--secondary-orange);
    box-shadow: 0 8px 25px rgba(255, 127, 65, 0.4);
}
