/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 120px 100px 50px 100px;
    padding: 40px 40px;
    background-color: #e6eddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #006699;

    font-weight:normal;
}

.contact-section h1:hover{
    transform: scale(1.1);
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;

    font-weight:normal;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .form-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

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

.contact-section label {
    font-size: 1.1em;
    text-align: left;
    color: #013d5b;
        font-family:Didot, serif;
    font-weight:normal;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-section button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background-color: #006699;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #014a6e;
}
