
body {
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}


.contact-container {
    display: flex;
    justify-content: center;
    padding: 40px 40px;
    background-color: white;
    margin-left: 40px;
}

.contact-details {
    width: 45%;
}

.contact-details h2 {
    color: #80B824;
}

.contact-details a {
    color: #80B824;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    width: 45%;
    border: 1px solid #80B824;
    width: 500px;
    height: 500px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    
}

.contact-form h2 {
    color: #80B824;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Montserrat';
}

.contact-form button {
    background-color: #80B824;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.title-section .image-container .overlay {
    position: absolute;
    top: 0%;
    left:38%;
    background-color: #80B824;
    padding: 20px 40px;
    font-size: 35px;
    font-weight: normal;
    color: white;
    text-align: center;
}

/* Message Styles */
.messages {
    margin-bottom: 20px;
}

.message {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

