html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px; /* Adjust to your navbar height */
}


.policies-hero {
    height: 400px;
    width: 100%;
    background-image: url('/images/policies/PoliciesHero.webp'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    filter:
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.9))
  
    drop-shadow(0 0 45px rgba(0, 0, 0, 0.6));
  }

  /* ================= Policies Page Styling ================= */

.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.about-section h2,
.about-section h3 {
  color: #007cdb;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2.about-slogan {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-section h3 {
  font-size: 1.8rem;
  margin-top: 40px;
}

.about-section h4 {
  font-size: 1.5rem;
  margin-top: 40px;
}

.about-section p {
  font-size: 1.3rem;
  max-width: 900px;
  margin: 10px auto;
  color: #444;
}

.about-section ul {
  font-size: 1.3rem;
  max-width: 900px;
  margin: 10px auto 30px auto;
  color: #444;
  text-align: left;
  padding-left: 40px; /* creates space between edge and bullets */
}

.about-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}
/* Optional: Add some spacing for each policy section */
.about-mission {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .about-section h2.about-slogan {
    font-size: 1.8rem;
  }

  .about-section h3 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1.1rem;
  }
}
