  /*about us */
  .about {
    padding: 50px;
    text-align: center;
  }
  
  .about h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  .about p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    animation: fadeIn 1s ease-in-out;
  }
  
  .mission {
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .mission h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  .mission p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    animation: fadeIn 1s ease-in-out;
  }
  
  .mission ul {
    list-style-type: none;
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mission ul li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    text-align: left;
    width: 50%;
    position: relative;
    padding-left: 20px;
  }
  
  .mission ul li::before {
    content: "";
    position: absolute;
    top: 8px; 
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #ff5400; 
    border-radius: 50%;
  }

  .values {
    padding: 50px 0;
    text-align: center;
  }
  
  .values h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px; /* Increased margin for better separation */
    animation: fadeInUp 1s ease-in-out;
  }
  
  .values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .value {
    flex: 0 0 calc(33.33% - 40px); /* Adjusted width to accommodate 3 values per row */
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px; /* Increased border radius for a softer look */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    transition: transform 0.3s ease;
  }
  
  .value:hover {
    transform: translateY(-10px);
    background-color: #fdd3be; 
  }
  
  .value h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .value p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
  }
  
  .community {
    padding: 50px;
    text-align: center;
  }
  
  .community h2 {
      font-size: 36px;
      color: #333;
      margin-bottom: 40px; /* Increased margin for better separation */
      animation: fadeInUp 1s ease-in-out;
  }
  
  .community-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 40px;
  }
  
  .community-logos img {
      width: 250px; /* Adjust size as needed */
      margin: 20px; /* Add spacing between logos */
  }
  
  
  /* Keyframe animations */
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
     100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  
  /* Additional Responsive Styles */

/* For smaller devices like tablets */
@media (max-width: 992px) {
    .about, .mission, .community {
      padding: 40px;
    }
    
    .about h2, .mission h2, .community h2 {
      font-size: 32px;
    }
    
    .about p, .mission p {
      font-size: 17px;
    }
  
    .values {
      padding: 40px 0;
    }
    
    .values h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }
    
    .value {
      flex: 0 0 calc(50% - 40px);
      max-width: 400px;
    }
    
    .mission ul li {
      width: 100%;
    }
  
    .community {
      padding: 40px;
    }
  
    .community h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }
  
    .community-logos img {
      width: 120px;
      margin: 10px;
    }
  }
  
  /* For smaller devices like smartphones */
  @media (max-width: 576px) {
    .about, .mission, .community {
      padding: 30px;
    }
    
    .about h2, .mission h2, .community h2 {
      font-size: 28px;
    }
    
    .about p, .mission p {
      font-size: 16px;
    }
  
    .values {
      padding: 30px 0;
    }
    
    .values h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .value {
      flex: 0 0 calc(100% - 40px);
      max-width: 100%;
    }
  
    .mission ul li {
      width: 100%;
    }
  
    .community {
      padding: 30px;
    }
  
    .community h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  
    .community-logos img {
      width: 100px;
      margin: 10px;
    }
  }
  