.who-we-are {
    padding: 6rem 2rem 4rem;
    background-color: var(--white);
  }
  
  .who-we-are .section-title {
    font-size: 3rem;
    text-align: center;
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 100px;
    z-index: 2;
  }
  
  .who-we-are-content {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .who-we-are-image {
    z-index: 2;
    flex: 1;
  }
  
  .who-we-are-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  .who-we-are-text {
    flex: 1;
  }
  
  .who-we-are-text p {
    margin-bottom: 1.5rem;
  }
  
  .diamond6 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 4rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
  }
  
  .diamond7 {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 4rem;
    opacity: 0.6;
    animation: float-reverse 8s ease-in-out infinite;
    z-index: 1;
  }
  
  .diamond4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 4rem;
    opacity: 0.6;
    animation: float 9s ease-in-out infinite;
    z-index: 1;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(5deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }
  
  @keyframes float-reverse {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @media (max-width: 768px) {
    .who-we-are-content {
      flex-direction: column;
      gap: 2rem; 
      padding: 1rem;
    }
  
    .who-we-are .section-title {
      font-size: 2.2rem; 
      padding-top: 50px; 
    }
  
    .who-we-are-image {
      width: 100%; 
      margin-bottom: 2rem; 
    }
  
    .who-we-are-text {
      width: 100%; 
    }
  
    .diamond6, .diamond7, .diamond4 {
      width: 3rem; 
    }
  
    .who-we-are-text p {
      font-size: 1.1rem; 
    }
  }
  
  @media (max-width: 480px) {
    .who-we-are .section-title {
      font-size: 1.8rem; 
      padding-top: 30px; 
    }
  
    .who-we-are-image img {
      width: 100%; 
    }
  
    .who-we-are-text p {
      font-size: 1rem; 
    }
  }
  