body {
  background: #8c4c4c;
}

.contact-section {
  padding: 4rem 1rem;
}

.contact-map {
  height: 400px;
  width: 100%;
  border: none;
}

.form-feedback {
  color: #dc3545;
  margin-top: 0.5rem;
}

.form-success {
  color: #28a745;
}

.contactus-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}

.contactus-header h2 {
  color: white;
  font-size: 45px;
  font-weight: 700;
  margin: 0;
}

.phone-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive styles */
@media (max-width: 868px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .contactus-header h2 {
    font-size: 32px;
  }

  .contact-map {
    height: 300px;
  }
  .phone-flex {
    display: block;
  }
}

@media (max-width: 480px) {
  .contactus-header h2 {
    font-size: 24px;
  }

  .contact-section {
    padding: 1rem 0.5rem;
  }

  .contact-map {
    height: 250px;
  }
  .phone-flex {
    display: block;
  }
}
