*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #f5f5f5;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar img {
  height: 70px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
}

.hero img {
  width: 100%;
  display: block;
}

/* Main Title */
.main-title {
  background-color: #bf975c;
  color: #fff;
}

.main-title h1 {
  padding: 15px;
  margin: 0px;
  text-align: center;
}

/* Form Section */
.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.form-section {
    max-width: 85%;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
}


label {
  font-weight: bold;
  margin-top: 20px;
  display: block;
  font-size: 22px;
  text-align: right;
}

select{
    background: #eee;
    width: 100%;
     padding: 18px;
  margin-top: 15px;
  border-radius: 0px;
}
input {
  width: 100%;
  padding: 18px;
  margin-top: 15px;
  border-radius: 0px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #eee;
}

button {
    width: 100%;
    padding: 14px;
    background: #bf975c;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: block;
    margin: 30px auto;
}

button:hover {
  background: #111;
}

/* **************thank page*********** */
body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
  text-align: center;
}
.footer {
    margin-top: 30px;
    background: #252323;
    color: #bbb;
    padding: 20px 10px 10px 10px;
}
.mesaage-content {
    width: 70%;
    background: #bdfad8;
    margin: 30px auto;
    padding: 20px;
    border-radius: 35px;
}
body > div.container > div > div.icons > a {
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px -3px 22px rgba(0,0,0,0.2);
}
h1.thank-title {
  color: green;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
}

p.thank-message {
  font-size: 18px;
  margin-bottom: 25px;
  color: green;
}

h3.title-social {
  color: #bf975c;
  margin-top: 25px;
  font-size: 20px;
}

/* Social icons */
.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.icons a img {
  width: 45px;
  height: 45px;
  transition: 0.2s;
}

.icons a img:hover {
  transform: scale(1.1);
}

/* Branches */

.branches {
  margin-top: 30px;
  text-align: right;
}

.branches h3 {
    margin-top: 30px;
     margin-bottom: 30px;
     text-align: center;
     font-size: 25px;
     
}

.branch {
    display: block;
    background: #bf975c;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 60%;
    margin: 20px auto;
}

.branch:hover {
  background: #111;
  color: #fff;;
}
/* Icon inside Visit Button */
.btn-icon {
  width: 22px;
  height: 22px;
  margin-left: 8px;
  vertical-align: middle;
      transition: 0.2s;
}

/* Branch icon styling */
.location-icon {
  width: 22px;
  height: 22px;
  margin-left: 8px;
}

/* Button */
.visit-btn {
    display: block;
    width: 50%;
    margin: auto;
    margin-top: 30px;
    padding: 14px 24px;
    font-size: 18px;
    background: #bf975c;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 700;
}

.visit-btn:hover {
  background: #111;
  color: #fff;
}



/* end thank page */

@media (max-width:768px){

    .main-title h1 {
    font-size: 26px;
}

.form-section {
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin: 20px auto;
}
.mesaage-content , .visit-btn, .branch {
    width: 100%;
}

.navbar img {
    height: 55px;
}
.footer {
    margin-top: 110px;
}

}