/* Contact Page Specific Styles */
#contact-section {
    padding: 10rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-section h1 {
    color: #333;
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 2200px;
    background: #f9f9fb;
    padding: 6rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    align-items: stretch;
}

#contactForm {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#contactForm label {
    margin-bottom: 0.5rem;
    color: #333;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

#contactForm button {
    background: #285AC7;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

#contactForm button:hover {
    background: #004d60;
}

.contact-image {
    flex: 1;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
}

nav {
    grid-template-rows: auto 0px;
}

main {
    padding-top: 120px;
}

