.contact-section {
    color: #B66681;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFE9EF;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #B66681;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #B66681;
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Remove default button styling for social links */
button.social-link {
    background: none;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0.5rem 1rem; /* Match existing padding for your social links */
}

/* If needed, add hover effects similar to the anchors */
button.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Adjust to match anchor hover effect */
}

/* Contact Form Styles */
.contact-form {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-content {
    width: 100%;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

#email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#email-form input,
#email-form textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    outline: none;
}

#email-form input:focus,
#email-form textarea:focus {
    border-color: #B66681;
    box-shadow: 0 2px 8px rgba(182, 102, 129, 0.2);
}

#email-form textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.submit-button {
    background-color: #B66681;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #Fe5d9f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
}
