.contact-page {
  padding: 50px 0 70px;
}
.contact-page .page-title {
  text-align: center;
  color: #1f6f3a;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-intro {
  max-width: 900px;
  margin: 0 auto 16px;
  color: #333;
  line-height: 1.7;
}
.contact-note {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form-group { margin-top: 18px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  font-size: 14px;
}
.contact-form textarea { min-height: 120px; }
.contact-form button {
  margin-top: 20px;
  background: #1f6f3a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-form button:hover { background: #155c2f; }

.contact-alert {
  max-width: 900px;
  margin: 0 auto 16px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.contact-alert.success { background: #e8f7ee; color: #166534; }
.contact-alert.error { background: #fef2f2; color: #b91c1c; }

.contact-map-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 50px;
}

.contact-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100% !important;
  height: 420px !important;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  width: 100%;
  height: 420px;
  background: #f2f2f2;
  color: #666;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-map,
  .contact-map iframe,
  .contact-map-placeholder { height: 300px !important; }
}
