.contact-section {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c89b3c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #c89b3c;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #a87f2f;
  transform: translateY(-2px);
}