   .mission-hero {
      position: relative;
      height: 50vh;
      background: url("images/mission-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .mission-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .mission-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.5rem;
    }

    .mission-section {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
      line-height: 1.6;
    }
    .mission-section h2 {
      color: #a80000;
      margin-bottom: 15px;
      text-align: center;
    }
    .mission-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .mission-grid img {
      width: 100%;
      max-width: 300px;
      border-radius: 8px;
    }
    .mission-grid div {
      flex: 1;
      min-width: 250px;
    }
    .highlight {
      background: #f9f9f9;
      padding: 15px;
      border-left: 4px solid #a80000;
      margin: 20px 0;
    }

    @media (max-width: 768px) {
      .mission-hero h1 { font-size: 1.8rem; }
      .mission-grid { flex-direction: column; align-items: center; }
    }