.hero {
  background: rgb(214,122,8);
background: linear-gradient(90deg, rgba(214,122,8,1) 35%, #643ea8 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
  padding: 30px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  width: 45%;
  flex-grow: 1;
}

.contact-info p{
  margin-bottom: 20px;
}


.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info ul li a {
  color: #DE7C12;
  text-decoration: none;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

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

.contact-form label {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #cccccc40;
  border-radius: 5px;
  font-size: 16px;
  resize: none;
}

.submit-btn {
  padding: 10px 20px;
  background-color: #DE7C12;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #d97900;
}

/* Map Section */
.map-section {
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

.map-section h2 {
  color: #DE7C12;
  margin-bottom: 30px;
  font-size: 30px;
}

.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}
