.contact-section {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box; /* ensures all children respect this */
  width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}