/* Contact Page */
#contact {
    padding: 60px 0;
    background: var(--light-bg-color);
}

#contact .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

#contact .form-container {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

#contact .form-container h2 {
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 20px;
    color: var(--heading-color);
}

#contact .form-container p {
    font-family: var(--body-font);
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

#contact .contact-info {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact .contact-info img {
    margin-bottom: 30px;
}

.social-links {
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    /* Accent color for social links hover */
}

.contact-email {
    font-family: var(--body-font);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-email:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-email .fas {
    margin-right: 10px;
    color: var(--secondary-color);
    /* Accent color for icons */
}

#contact .button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Refinements for contact info panel */
#contact .contact-info img {
    max-width: 200px;
    /* Reduced logo size */
    margin-bottom: 30px;
}

#contact .social-links a:hover {
    transform: scale(1.1);
    /* Add scale effect on hover */
}