.contact-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ffdee9, #b5fffc);
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 600px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.form-container p {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff5a77;
  box-shadow: 0 0 5px rgba(255,90,119,0.3);
}

.form-btn {
  width: 100%;
  background: #ff5a77;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: #e34b66;
}
