@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&display=swap");
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.contact-us-page-container {
  max-width: 1200px;
  margin: 0 auto;
  /* border: 3px solid red; */
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  /* height: 400px; */
  margin-top: 0px;
  margin-bottom: 0;
}

.contact-section {
  padding: 40px 10%;
  background-color: #ffffff;
  /* border: 5px solid blue; */

}

.contact-header {
  text-align: center;
  font-size: 2.5em;
  color: #000;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  /* border: 5px solid blue; */
}

.contact-header .blue-text {
  color: #4a4aef;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  /* min-height: 70vh; */
  flex-wrap: wrap;
  /* border: 3px solid red; */
  margin: 60px 0;
  max-width: 1024px;
  margin: auto;
}

.contact-left,
.contact-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  /* border: 3px solid red; */
}

/* .contact-left {
  margin-top: 0px;
  border: 3px solid blue;
} */

.contact-left h2 {
  font-size: 2.125em;
  color: #000;
  /* margin-bottom: 20px; */
  /* margin-top: 0px; */
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.contact-left p {
  font-size: 1em;
  color: #666;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.4;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 90%;
}

.contact-address div {
  /* border: 3px solid red; */
  display: flex;
  gap: 15px;
}
.contact-address div img {
  /* border: 3px solid red; */
  height: 100%;
}
.contact-address div h3 {
  /* border: 3px solid red; */
  height: 100%;
  margin-top: 0;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.25em;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  font-size: 1.5em;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #4a4aef;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  font-size: 1.25em;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  margin-top: 20px;
}

.contact-form select {
  font-size: 1.25em;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: auto;
}

.contact-form .phone-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.phone-group select,
.phone-group input {
  border: none;
  outline: none;
  font-size: 1.25em;
  padding: 20px;
  margin: 0;
}

.phone-group select {
  padding-left: 20px;
  padding-right: 20px;
}

.phone-group input {
  flex: 1;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.g-recaptcha {
  margin-bottom: 20px;
}

.contact-form button {
  padding: 15px;
  font-size: 1em;
  color: #fff;
  background-color: #4a4aef;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 150px;
}

.contact-form button:hover {
  background-color: #3b3bc7;
}

@media (max-width: 992px) {
  .contact-section {
    padding: 0 20px;
  }
  .contact-left,
  .contact-right {
    width: 70%;
    /* margin-top: 0; */
    margin: 20px auto;
  }

  .contact-left {
    margin-bottom: 40px;
  }
  .contact-left h2,
  .contact-left p,
  .contact-left .contact-address div,
  .contact-left .social-icons {
    text-align: center;
    width: 100%;
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
  }

  .contact-form button {
    /* border: 3px solid red; */
    margin: auto;
  }
}

@media (max-width: 768px) {
  .contact-header {
    font-size: 2.5em;
  }
}

@media (max-width: 576px) {
  .contact-left,
  .contact-right {
    width: 100%;
    /* margin-top: 0; */
    margin: 20px auto;
    /* border: 3px solid red; */
  }
  .contact-section {
    padding: 0 10px;
    /* border: 3px solid red; */
  }
  .contact-left h2 {
    font-size: 1.75em;
  }

  .contact-left .contact-address div h3 {
    /* border: 2px solid red; */
    font-size: 0.9em;
  }

  .contact-address div {
    /* border: 3px solid red; */
    display: flex;
    gap: 15px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1em;
    padding: 15px;
  }

  .contact-form button {
    padding: 10px;
    font-size: 0.875em;
    width: 100%;
  }
}