/* Contact Form Styling */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 20px;
    background-color: #ffffff;
}

#contactForm {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
#contactForm textarea {
    height: 200px; 
    resize: vertical; 
}


#contactForm button {
    width: 100%;
    padding: 10px;
    background-color: #185f1d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

#contactForm button:hover {
    background-color: #51f181;
}
