.contact-section {
  background: var(--color-bg);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-form {
    margin: 0 1rem;
    padding: 2rem;
  }
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section .section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control,
.form-select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-teal);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  background-color: var(--color-dark);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.contact-form .btn-primary:hover {
  background-color: #1d1e29;
}