:root {
  --primary-color: #10367A;
  --secondary-color: #D3D3D3;
  --accent-color: #FE5716;
  --background-color: #FFFFFF;
  --text-color: #000000;
}

.hero-header {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
  background-color: var(--background-color);
  color: var(--text-color);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 54, 122, 0.5) 0%, rgba(254, 87, 22, 0.35) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight-orange {
  color: var(--accent-color);
}

.highlight-blue {
  color: var(--primary-color);
}

.hero-sub {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f3f3f3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.15em;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.15s;
}

.hero-btn:hover {
  background: linear-gradient(90deg, var(--accent-color) 60%, var(--primary-color) 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 600px) {
  .hero-header {
    height: auto;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-sub {
    font-size: 1em;
  }

  .hero-btn {
    font-size: 1em;
    padding: 12px 24px;
  }
}