/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #eaf4ff;
}

/* Form container box */
.form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo at top */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 150px;
  height: auto;
}

/* Page heading */
h2 {
  text-align: center;
  color: #005bab;
  margin-bottom: 20px;
}

/* Input fields and textarea */
form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

/* reCAPTCHA box spacing */
.g-recaptcha {
  margin-bottom: 20px;
}

/* Submit button */
form button {
  width: 100%;
  background: #005bab;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #003b80;
}

/* Contact info box */
.contact-info {
  margin-top: 40px;
  font-size: 15px;
  color: #333;
  text-align: center;
}

.contact-info h3 {
  color: #005bab;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #005bab;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
