#contact-form {
  max-width: 450px;
  margin: 50px auto;
  padding: 20px 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  font-family: Arial, sans-serif;
}

/* --- Heading --- */
.form-header {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

/* --- Subheading / description text --- */
.form-description {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.4;
}

#contact-form label {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #4a80ff;
  box-shadow: 0 0 0 2px rgba(74, 128, 255, 0.25);
  outline: none;
}

#contact-form button {
  background: #4a80ff;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}

#contact-form button:hover {
  background: #3a6be0;
}

#contact-form button:active {
  background: #325cc2;
}

.form-status {
  font-size: 0.9rem;
  margin-top: 12px;
  min-height: 18px;
}
