
body{
    font-family: 'Open Sans', sans-serif;
}
.contact {
    font-family: Arial, sans-serif;

    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;


    
}
.container {
    width: 100% !important;
    background-color: #e6e3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.container h1 {
    font-weight: 300;
    color: #0133b1;
}
.container-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 10px;
}


.tab-container
{
    display: flex;
}

form {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    box-sizing: border-box;
    margin-right: 20px; /* Add some spacing between form and tab bar */
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #3f75ff;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #3157ff;
}

#messageDisplay {
    margin-top: 16px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#messageDisplay.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

#messageDisplay.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.combined-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

.tab-container {
    display: flex;
    justify-content: center;
    
}

.tab {
width: 100%;
text-align: center;
background-color: #eee;
cursor: pointer;
padding: 10px;
border-bottom: 2px solid transparent;
transition: border-bottom 0.3s ease-out;

}

.tab:hover,
.tab.active {
border-bottom: 2px solid #3f75ff; /* Blue color on hover and for active tab */
}

.tab.active {
color: #0a36f6; /* Blue color on hover and for active tab */
}

.tab-content {
    flex: 1;
    background-color: #eee;
    padding: 20px;
    border-radius: 0px;
    box-sizing: border-box;
    display: none;
    
}


.tab-content img {
width: 20px;
margin-right: 12px;
vertical-align: middle;
}

.tab-content .content-wrapper {
display: flex;
align-items: center;
margin-bottom: 25px
}

.tab-content img {
width: 20px;
margin-right: 12px;
}

.tab-content span {
line-height: 1.5; /* Adjust the line height as needed */

}
.tab-content h2 {
text-align: center;
color: #3659f1;
}



@media (max-width: 767px) {
    body {
        margin: 0 !important;
    }


    #contactForm {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: auto;
      }
      
      .contact .container h1 {
        font-size: 20px;
      }

      .contact .container label {
        font-size: 10px;
      }

      
      .combined-container {
        display: flex;
        flex-direction: column;
        width: 90%;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      }


      .container-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally within the container */
        width: 100%; /* Ensure the container takes up the full width */
      }

      .tab-content h2 {
        font-size: 18px;
      }
      .tab-content span {
        font-size: 10px;
      }

      .map-container  {
        display: none;
      }
}