/* Contact Form Container */
.contact-form-wrapper {
  max-width: 700px;
  margin: 40px auto;
}

/* Heading */
.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Labels */
.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
  font-size: 14px;
}

/* Inputs & Textareas */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 4px rgba(25, 118, 210, 0.3);
  outline: none;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #b71c1c;
}
