.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.contact-title {
  font-size: 48px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: normal;
}

.contact-description {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

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

.form-label {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.form-label::before {
  content: "";
  width: 4px;
  height: 24px;
  background-color: #27ae60;
  margin-right: 12px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #ccc;
}

textarea.form-input {
  min-height: 200px;
  resize: vertical;
}

.submit-button {
  display: block;
  width: 200px;
  padding: 15px;
  margin: 60px auto 0;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background: #219a52;
}

@media (max-width: 768px) {
  .contact-description {
    font-size: 14px;
    text-align: left;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 36px;
  }

  .submit-button {
    width: 100%;
  }
}
