/* Shared Mission Section Styles */
.shared-mission-section {
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    background-color: #FFD600;
    transition: all 0.5s ease;
    font-family: "Roboto", sans-serif;
  }
  
  .shared-mission-section h3 {
    font-size: 3rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: lighter;
    transition: all 0.5s ease;
  }
  
  .shared-mission-section h1 {
    font-size: 4.7rem;
    color: black;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: all 0.5s ease;
  }
  
  .shared-mission-section p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: Roboto, sans-serif;
    transition: all 0.5s ease;
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .shared-mission-section h1 {
      font-size: 3.7rem; 
    }
  
    .shared-mission-section h3 {
      font-size: 2.3rem; 
    }
  
    .shared-mission-section p {
      font-size: 1.3rem; 
    }
  }
  
 
  @media (max-width: 768px) {
    .shared-mission-section h1 {
      font-size: 3rem;
    }
  
    .shared-mission-section h3 {
      font-size: 2.1rem;
    }
  
    .shared-mission-section p {
      font-size: 1.4rem;
      max-width: 600px; 
    }
  
    .shared-mission-section {
      padding: 30px 15px; 
    }
  }
  
 
  @media (max-width: 480px) {
    .shared-mission-section h1 {
      font-size: 2.5rem; 
    }
  
    .shared-mission-section h3 {
      font-size: 1.8rem;
    }
  
    .shared-mission-section p {
      font-size: 1.2rem; 
      max-width: 90%; 
    }
  
    .shared-mission-section {
      padding: 20px 10px; 
    }
  }