 

body {
    background-color: white;
    color: #4a3f35;
}

.contact-us-section {
    margin: 0 auto;
}

  .banner-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin-top:112px;
}

.contact-header h1 {
    font-size: 40px;
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.left-section, .right-section {
    width: 48%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.left-section h2, .right-section h2 {
    font-size: 24px;
    color: #b34c4c;
    margin-bottom: 20px;
}

.left-section p {
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: #b34c4c;
    text-decoration: none;
}

.right-section form {
    display: flex;
    flex-direction: column;
}

.right-section form input, .right-section form textarea {
    margin-bottom: 15px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.right-section form textarea {
    height: 150px;
}

.right-section form button {
    padding: 10px 20px;
    background-color: #b34c4c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.right-section form button:hover {
    background-color: #933939;
}

/* Style for the map container */
/*.map-container {*/
/*    margin-top: 40px;*/
/*    text-align: center;*/
/*    width:50%;*/
/*}*/

/*.map-container h2 {*/
/*    font-size: 20px;*/
/*    color: #b34c4c;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.map-container iframe {*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Style for "Get in Touch with Us" heading */
/*.get-in-touch-heading {*/
/*    font-size: 30px;*/
/*    color: #b34c4c;*/
/*    text-align: center;*/
/*    margin-bottom: 30px;*/
/*    font-weight: bold;*/
/*    letter-spacing: 1px;*/
/*}*/
/*.showroom-image img {*/
/*    width: 50%;*/
/*}*/
/*.showroom_container{*/
/*    display:flex;*/
/*}*/


.showroom_container {
    display: flex;
    flex-wrap: wrap; /* In case screen is smaller, it will not break ugly */
    box-sizing: border-box;
}

.map-container {
    margin-top: 40px;
    text-align: center;
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
}

.map-container h2 {
    font-size: 20px;
    color: #b34c4c;
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.showroom-image {
    width: 50%;
    text-align: center;
    margin-top: 40px; /* To match the map top spacing */
    box-sizing: border-box;
    padding: 10px;
}

.showroom-image img {
      width: 98%;
   
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 80%;
     
}

/* Style for "Get in Touch with Us" heading */
.get-in-touch-heading {
    font-size: 30px;
    color: #b34c4c;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .left-section, .right-section {
        width: 100%;
    }

    .contact-header {
        height: 200px;
    }
      .banner-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin-top:112px;
}

 .showroom_container {
        flex-direction: column;
        align-items: center; /* Center items */
    }

    .map-container,
    .showroom-image {
        width: 100%;
        margin-top: 20px;
        padding: 5px;
    }

    .showroom-image img {
        width: 90%;
        height: auto;
        margin-top: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}
