@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Contact Page Styling */
#contact-page {
  width: 100%;
  background-color: #c69320;
  margin: 0 auto;
  padding: 20px;
}

.contactpara {
	text-align: center;
}

.contactme {
	color: #fff
}

/* Banner Styling */
.banner {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #c69320;
}

.banner .background {
  position: absolute;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.banner .title {
  position: relative;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000;
}

.banner .title h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
}

/* Content Styling */
.content {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info, .contact-form, .map {
  margin-bottom: 20px;
}

.contact-info h2, .contact-form h2, .map h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  margin-right: 20px;
}

.contact-item h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #000;
}

.contact-item p {
  font-family: "Open Sans", sans-serif;
  color: #000;
}

.contact-item a {
  color: #c69320;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #c69320;
  border-radius: 4px;
}

.contact-form button {
  background-color: #c69320;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #000;
  color: #c69320;
}

.map iframe {
  width: 100%;
  border: 0;
  border-radius: 4px;
  height: 300px;
}

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

  .contact-item {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .map iframe {
    height: 200px;
  }
}
