.contact-container {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: auto;
}

.contact-intro {
  margin-bottom: 40px;
  text-align: center;
}

.contact-intro h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-section form .full-width {
  grid-column: 1 / -1;
}

.contact-form-section label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form-section textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-section button {
  grid-column: 1 / -1;
  background-color: var(--mousa-primary, #007BFF);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-section button:hover {
  background-color: var(--mousa-accent, #0056b3);
}

.form-response {
  grid-column: 1 / -1;
  margin: 10px 0;
  font-size: 14px;
}

.form-response.success {
  color: green;
}

.form-response.error {
  color: red;
}
