/* Who We Are Section Styles */
.who-we-are-section {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0px;
    margin-bottom: 5rem;
    transition: all 0.5s ease;
  }
  
  .who-we-are-section h3 {
    font-size: 3rem;
    color: #FF6F00;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: lighter;
    transition: all 0.5s ease;
  }
  
  .heading {
    margin-bottom: 10rem;
    transition: all 0.5s ease;
  }
  
  .who-we-are-section h1 {
    font-size: 3.7rem;
    color: #003E65;
    margin-bottom: 10px;
    font-weight: 570;
    font-family: "monstserrat", sans-serif;
    transition: all 0.5s ease;
  }
  
  .secondHeading {
    margin-top: 0px;
    transition: all 0.5s ease;
  }
  
  .who-we-are-section .image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    transition: all 0.5s ease;
  }
  
  .who-we-are-section .image-container img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .who-we-are-section h1 {
      font-size: 3rem; 
    }
  
    .who-we-are-section h3 {
      font-size: 2.5rem; 
    }
  
    .heading {
      margin-bottom: 8rem;
    }
  
    .who-we-are-section .image-container img {
      width: 80%; 
    }
  }
  
  
  @media (max-width: 768px) {
    .who-we-are-section h1 {
      font-size: 2.5rem;
    }
  
    .who-we-are-section h3 {
      font-size: 2rem;
    }
  
    .heading {
      margin-bottom: 6rem;
    }
  
    .who-we-are-section .image-container img {
      width: 90%; 
    }
  }
  
  
  @media (max-width: 480px) {
    .who-we-are-section h1 {
      font-size: 2rem;
    }
  
    .who-we-are-section h3 {
      font-size: 1.8rem;
    }
  
    .heading {
      margin-bottom: 4rem;
    }
  
    .who-we-are-section .image-container img {
      width: 100%; 
    }
  }