.container {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 8px;
}

.profile-img, .office-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.form-section, .faq-section {
  margin-top: 20px;
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section form {
  display: flex;
  flex-direction: column;
}

.form-section input, .form-section textarea, .form-section button {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  background-color: #ff5722;
  color: white;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.form-section button:hover {
  background-color: #e64a19;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item h3 {
  cursor: pointer;
  background-color: #000000;
  padding: 10px;
  border-radius: 5px;
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #000000;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .header {
      flex-direction: column;
      align-items: flex-start;
  }
  #heroiii{
    height: 40vh !important;
  }
  .profile-img, .office-img {
      width: 100%;
      height: auto;
  }
}
