:root {
  --primary-dark-blue: #0f1d97;
  --primary-teal: #05cab6;
  --bs-primary: var(--primary-dark-blue);

  /* Page specific vars */
  --dark-blue: #141e34;
  --header-blue: rgba(14, 42, 193, 0.92);
  --text-grey: #666666;
  --border-blue: #a2bef8;
  --border-cyan: #b8e6e1;
}

.main-body {
  body {
    font-family: 'Lato', sans-serif;
    color: var(--text-grey);
    line-height: 1.9em;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    color: var(--primary-dark-blue);
  }

  /* =========================================
           2. NEW PROFESSIONAL HERO STYLES
           ========================================= */
  .hero-section {
    /* Deep Blue Gradient */
    background: linear-gradient(135deg, #020c2b 0%, #0f1d97 100%);
    position: relative;
    padding: 120px 0 100px 0;
    overflow: hidden;
    color: white;
  }

  /* Tech Dot Matrix Pattern Overlay */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(5, 202, 182, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
  }

  /* Faded Large Icon for visual depth */
  .hero-bg-icon {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-breadcrumbs {
    margin-bottom: 15px;
  }

  .hero-breadcrumbs a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero-breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
  }

  .hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.25rem;
    color: #a2bef8;
    font-weight: 300;
    max-width: 700px;
  }

  .hero-line {
    width: 80px;
    height: 4px;
    background: var(--primary-teal);
    margin-bottom: 25px;
    border-radius: 2px;
  }

  /* =========================================
           CONTENT STYLES
           ========================================= */
  .content-section {
    padding: 60px 0;
  }

  .section-heading {
    color: black;
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  /* Small underline for headings within content */
  .section-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: gray;
    margin-top: 8px;
  }

  .policy-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .hero-bg-icon {
      right: -20%;
      font-size: 20rem;
    }
  }

}