/* Our Mission Section */
.mission-section {
    background-color: rgba(0, 43, 91, 0.3);
    padding: 80px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .mission-section h2 {
    font-size: 2.4rem;
    text-align: center;
    font-style: italic;
    color: #00d4ff;
    margin-bottom: 1rem;
  }
  .mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dff6ff;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .mission-section {
      padding: 50px 15px;
      margin-bottom: 30px;
    }
    .mission-section h2 {
      font-size: 2rem;
    }
    .mission-section p {
      font-size: 1rem;
    }
  }
  