.about-us {
    background-color:  hsl(29, 100%, 95%);
    padding: 40px 20px;
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .about-content h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 900;
  }
  
  .about-content p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .mission-goals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .goal {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  
  .goal h2 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
  }
  
  .goal p, .goal ul {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
  }
  
  .goal ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .goal ul li {
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .goal {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  