.contact-form-section {
  margin-top: 32px;
  background: #f7fafc;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25,52,66,0.10);
  padding: 40px 32px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 28px;
  color: #173442;
}

.contact-form .form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #173442;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  background: #f4f8fb;
  color: #173442;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #193442;
  outline: none;
}

.contact-submit-button {
  width: 100%;
  padding: 14px 0;
  background: #193442;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.contact-submit-button:hover {
  background: #25506a;
}

.contact-email-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: #193442;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(25,52,66,0.07);
}

.contact-email-button:hover {
  background: #25506a;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  /* max-height: 300px; */
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 24px 8px;
    max-width: 100%;
  }
}

.success-message {
  display: none;
  color: green;
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
} 