.contact-us {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url("../assets/images/background-images/olive-trees.png");
  background-size: cover;
  background-position: center;
  gap: 32px;
  height: 100vh;
  padding: 170px 14%;
  color: var(--text-colour-dark);
  height: auto;
}
.contact-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.contact-us * {
  position: relative;
  z-index: 2;
}

/* Contact Details */
.contact-details {
  flex: 1 1 40%;
  max-width: 45%;
}
.contact-details h1 {
  margin-bottom: 20px;
}
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.contact-details li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.contact-details iframe {
  border: 0;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  height: 300px;
  box-shadow: 0px 4px 20px rgba(19, 33, 155, 0.1);
}
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.contact-list .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(1);
}

/* Send Message Form */
.send-message {
  flex: 1 1 50%;
  max-width: 50%;
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(19, 33, 155, 0.1);
}
.send-message h2 {
  margin-bottom: 20px;
}
.send-message p {
  margin-bottom: 20px;
}
.send-message form label {
  display: block;
  margin-bottom: 5px;
}
.send-message form input,
.send-message form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.send-message form textarea {
  resize: none;
  height: 100px;
}
.send-message form button {
  width: 100%;
  font-size: var(--body2-font-size);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .contact-us {
    flex-direction: column;
    height: auto;
    padding: 170px 5%;
  }
  .contact-details,
  .send-message {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-details iframe {
    width: 100%;
    height: 300px;
  }
}
