/* Header section */
.about-header {
  position: relative;
  background-image: url('./image/img1.jpg'); /* 🖼️ Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  background: #f2fefc;
}

.contact-left, .contact-right {
  flex: 1 1 45%;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.contact-left h2 {
  margin-bottom: 20px;
  color: #00796b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00796b;
  outline: none;
}

.contact-form button {
  background-color: #00796b;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #004d40;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h3 {
  margin-bottom: 8px;
  color: #00796b;
}

.contact-map {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-left, .contact-right {
    flex: 1 1 100%;
  }
}
