/* Contact Section */
.contact {
    background-color: var(--primary-bg);
}

.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 32px;
    color: var(--highlight-color);
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 20px;
}

.social-link:hover {
    background-color: var(--highlight-color);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}