:root {
  --primary-color: #1e977f;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding: 40px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Illustration */
.contact-illustration img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: auto;
}

/* Title */
.form-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* Contact Details */
.contact-details p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
  color: #444;
}

.contact-details strong {
  color: #222;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-details {
    text-align: left;
  }

  .contact-illustration img {
    max-width: 250px;
  }
}
