.contact_banner {
    background-image: url("/images/banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    overflow: hidden;
}


.contact_title {
    color: #FFFFFF;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 23px;
    position: relative;
    text-align: center;
    padding-bottom: 23px;
    text-transform: uppercase;
}

.contact_title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #58FF88;
    /* Border color */
    border-radius: 3px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact {

    background-color: #1D2432;
    color: #fff;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}


.contact-form input,
.contact-form textarea {
    background-color: #2b2b3c;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    width: 180px;
    margin: 0 auto;
    /* Center the button horizontally */
    background-color: #ff6c00;
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e65c00;
}

.contact-info {
    width: 40%;
    text-align: left;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #ff6c00;
}

@media (max-width:600px) {
    .contact-container{
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
    }
    
    .contact-form{
        width: 80%;
    }

    .contact-info{
        width: 80%;
    }
}