/* HERO */
.hero {
  background: #ffffff; /* Clean white background */
  padding: 100px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  color: #111;
  max-width: 600px;
}

.hero-subtitle {
  font-weight: 700;
  font-size: 14px;
  color: #1b3354;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Merriweather", serif;
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #111;
}

.hero p.subtitle {
  font-size: 18px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* CTA BUTTONS */
.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1b3354;
  padding: 14px 26px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: 0.25s ease;
}
.btn-primary:hover {
  background: #0a573c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  padding: 14px 24px;
  border-radius: 8px;
  border: 2px solid #1b3354;
  color: #1b3354;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}
.btn-secondary:hover {
  background: #f3fff8;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
