.contact-hero {
  background: linear-gradient(120deg, #0a3a66 60%, #b02a45 100%);
  color: #fff;
  padding: 2.5em 0 2em 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.contact-hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.contact-hero .lead {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.contact-info {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 1.2em 1.5em;
  margin: 2em auto 1.5em auto;
  max-width: 500px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.contact-info strong {
  color: #b02a45;
}
.contact-form-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 2em 1.5em 2em 1.5em;
  margin: 2em auto 2em auto;
  max-width: 500px;
}
.contact-form-section h2 {
  text-align: center;
  color: #0a3a66;
  font-size: 1.7em;
  margin-bottom: 1.2em;
}
.form-group {
  margin-bottom: 1.2em;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  color: #0a3a66;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7em;
  border: 1.5px solid #b02a45;
  border-radius: 7px;
  font-size: 1em;
  font-family: inherit;
  background: #f7f8fa;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0a3a66;
  outline: none;
}
button.learn-more {
  display: block;
  width: 100%;
  background: #0a3a66;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  border-radius: 7px;
  padding: 0.8em 0;
  margin-top: 0.5em;
  cursor: pointer;
  transition: background 0.2s;
}
button.learn-more:hover {
  background: #b02a45;
}
@media (max-width: 600px) {
  .contact-form-section, .contact-info {
    max-width: 98vw;
    padding: 1em 0.5em;
  }
}
