body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif, Arial;
}

.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.form-wrapper {
  background-color: #2d2d62;
  color: #ddbd78;
  padding: 25px 30px; /* Slightly tighter spacing inside the form */
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 10px;
}


.contact-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-submit button {
  background-color: #ffffff;
  color: #2d2d62;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit button:hover {
  background-color: #ddbd78;
  color: #2d2d62;
  transform: scale(1.02);
}

::placeholder {
  color: #b0b0b0;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 500px) {
  .form-wrapper p {
    font-size: 14px;
  }

  .form-wrapper h2 {
    font-size: 16px;
  }

  .contact-form .form-group {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .form-submit button {
    width: fit-content;
    font-size: 14px;
  }
}
