/* --- CTA Section Styles --- */
.cta-section {
  background: #eaf3fb;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,64,142,0.08);
  padding: 56px 40px;
  margin: 48px auto 32px auto;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,18,53,0.07);
  z-index: 0;
  pointer-events: none;
}
.cta-section-content {
  flex: 2;
  position: relative;
  z-index: 1;
}
.cta-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hr-on-primary, #fff);
  margin-bottom: 12px;
  /* font-family removed, global font applies */
  text-shadow: 0 2px 8px rgba(9,18,53,0.08);
}
.cta-section-text {
  font-size: 1.18rem;
  color: var(--hr-on-primary, #fff);
  margin-bottom: 0;
  font-family: var(--hr-font, 'Playfair Display', serif);
}
.cta-section-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.cta-section-btn {
  background: var(--hr-on-primary, #fff);
  color: var(--hr-primary, #091235);
  font-family: var(--hr-font, 'Playfair Display', serif);
  font-weight: 700;
  border-radius: 10px;
  padding: 18px 44px;
  font-size: 1.18rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 12px rgba(35, 64, 142, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.cta-section-btn:hover {
  background: var(--hr-primary-hover, #2d53b4);
  color: var(--hr-on-primary, #fff);
  box-shadow: 0 4px 24px rgba(45, 83, 180, 0.18);
}
@media (max-width: 900px) {
  .cta-section {
    flex-direction: column;
    padding: 32px 12px;
    gap: 18px;
  }
  .cta-section-content, .cta-section-action {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-section-btn {
    width: 100%;
    padding: 16px 0;
    font-size: 1.05rem;
  }
}
