.about-hero {
    height: 400px;
    width: 100%;
    background-image: url('/images/about/abouthero.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;
  }
  
  .about-hero .hero-logo {
    margin-top: 50px;
    width: 650px;  /* 👈 same as homepage */
    height: auto;
    filter:
  
      drop-shadow(0 0 25px rgba(0, 0, 0, 0.9))
      ;
  }

  /* About Section 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 h3 {
font-size: 1.7rem;
  }
  .about-section p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 10px auto;
  }
  
  /* Optional: Section-specific spacing */
  .about-slogan {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #007cdb;
  }
  
  .about-mission,
  .about-bio {
    margin-top: 40px;
  }
  
  