.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #c74168;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    color: #e05986;
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
}

.founder-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c74168;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.founder-social-link:hover {
    color: #e05986;
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
}

.social-icon {
    stroke: currentColor;
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}