.who-we-are-section {
    background-image: url('/images/WhoWeAre/background.jpg');
    background-size: cover;
    background-position: center;
    padding-bottom: 40px;
}

.who-we-are-section .content-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.who-we-are-section .description img {
    width: 40%;
    height: 400px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.who-we-are-section .description h2 {
    color: #345a96;
    font-weight: bold;
    margin-top: 0;
}

.who-we-are-section .description p {
    color: #555;
    font-size: 18px;
    text-align: justify;
    line-height: 1.6;
    margin-top: 10px;
}

.who-we-are-section ul li {
    margin-bottom: 5px;
}

.who-we-are-section ul li:last-child {
    margin-bottom: 0;
}

.leftContent img {
    float: left;
    margin-right: 20px;

}

.leftContent ul {
    margin-left: 450px !important;
}
.rightContent img {
    float: right;
    margin-left: 20px;

}



@media (max-width: 1024px) {
  .who-we-are-section .content-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
  }

  .who-we-are-section .description {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }

  .who-we-are-section .description h2 {
    order: 1;
    width: 100%;
    margin: 0 0 15px;
    text-align: center;
    font-size: 1.75rem;
  }
  .who-we-are-section .description img {
    order: 2;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 0 15px !important;
    object-fit: cover;
    border-radius: 5px;
  }
  .who-we-are-section .description p {
    order: 3;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 15px 0;
  }
  .who-we-are-section .description ul {
    order: 4;
    width: 100%;
    margin: 0 0 15px 20px !important;
    padding: 0;
  }
  .who-we-are-section .description ul li {
    margin-bottom: 5px;
  }


  @media (max-width: 768px) {
    .who-we-are-section .description h2 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .who-we-are-section .description p {
      font-size: 0.95rem;
    }
    .who-we-are-section .description ul {
      margin-left: 15px !important;
    }
  }
}

