
/*#region Hero */
.contact-hero {
    color: white;
    text-align: left;
    height: 20vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #042038;
}

.contact-hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.contact-text-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/*#endregion Hero*/


/*#region Content */


.contact-section-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}
.section-left {
    width: 45%;
}

.section-right {
    width: 45%;
}

.section-title-center {
    margin-bottom: 30px;
    margin-top: 30px;
}

.section-title-center h2 {
    color: black;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px; /* Set a maximum width for the form container */
    margin: 0 auto; /* Center the form horizontally */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-group textarea {
    resize: none;
    height: 200px;
    width: 100%; /* Make the textarea take up the full width */
}

.input-group {
    display: flex;
    justify-content: space-between;
}

.half-width {
    flex: 1;
    padding: 10px;
    border: 0.5px solid #ccc;
    font-size: 16px;
    background-color: #D9D9D9;
}

.first-input {
    margin-right: 10px;
}

.full-width {
    width: 100%; /* Make the input fields take up the full width */
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #D9D9D9;
}

.contact-form button {
    padding: 18px 24px;
    background-color: #0F001F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Make the button take up the full width */
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-info {
    text-align: center;
    margin-top: 50px;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.address {
    font-weight: bold;
}

.email, .telephone {
    color: #555;
}


.email a {
    text-decoration: underline;
    color: inherit;
}

.telephone a {
    text-decoration: underline;
    color: inherit;
}


/*#endregion Content*/

@media screen and (max-width: 500px) {
    .contact-section-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .section-left {
        width: 100%;
    }
    .section-right {
        width: 100%;
    }
    .section-title-center p {
       text-align: center;
        line-height: 22px;
    }
    .contact-form h2{
        margin-top: 20px;
    }
    .contact-info .address {
        font-size: 17px;
    }
    

    /*.half-width {*/
    /*    flex: 1;*/
    /*    padding: 10px;*/
    /*    border: 0.5px solid #ccc;*/
    /*    font-size: 16px;*/
    /*    background-color: #D9D9D9;*/
    /*    width: 100%;*/
    /*}*/

}