.custom-inner-banner{
    background-color: #f0da83;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.custom-inner-banner h2{
    text-align: center;
    font-size: 400%;
}


.container-contact {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    margin-bottom: 3%;
}
.theme-title-one {
    text-align: center;
    margin-bottom: 40px;
}

.theme-title-one h2 {
    font-size: 38px;
    font-weight: 900;
    color: #232323;
    margin-bottom: 10px;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Optional: Add space between columns */
}

.col-xl-6.col-lg-5.col-12,
.col-xl-6.col-lg-7.col-12 {
    flex: 1;
    min-width: 300px; /* Optional: Ensure columns don't shrink too much on smaller screens */
    box-sizing: border-box;
}

.img-box {
    background-size: cover;
    background-position: center;
    height: 500px;
    width: 100%;
}

.form-wrapper {
    padding: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-form-one .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 400px;
}

.theme-form-one input,
.theme-form-one .form-control,
.theme-form-one textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 12px;
    font-size: 16px;
    outline: none;
}

.theme-form-one textarea {
    resize: none;
    height: 100px;
}

.theme-button-one {
    background-color: #D8B528;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.theme-button-one:hover {
    background-color: #c3a321;
}

.placeholder-message{
    height: 10px;
}

@media (max-width: 768px) {
    .img-box {
        display: none;
    }
    .container-contact {
        padding: 0%;
        margin: 0%;
    }
}