.professional-specialists {
    background-color: #fff;
    padding: 100px 50px;
    cursor: default;
  }
  
  .professional-specialists .section-title {
    font-size: 4.6rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    max-width: 1240px;
    margin: 0 auto 60px;
    padding: 0 20px;
    width: 100%;
  }
  
  .specialist-block {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto 60px;
  }
  
  .image-container {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .image-container.reveal {
    opacity: 1;
    transform: translateY(0);
  }
  
  .specialist-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .text-container {
    width: 100%;
    padding: 20px 0 0 0;
  }
  
  .card-large-data-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .icon-container {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    display: flex;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
  }
  
  .icon-container svg {
    width: 100%;
    height: 100%;
  }

  .mini-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin: 0;
  }
  
  .heading {
    font-size: 4.6rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
  }
  
  .description-wrapper p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  @media (min-width: 981px) {
    .specialist-block {
      flex-direction: row;
      align-items: center;
    }
  
    .image-container {
      max-width: 50%;
      padding-top: 28.125%; /* Maintain 16:9 aspect ratio (56.25% / 2) */
    }
  
    .text-container {
      max-width: 50%;
      padding: 0 0 0 60px;
    }
  
    .specialist-block.reverse {
      flex-direction: row-reverse;
    }
  
    .specialist-block.reverse .text-container {
      padding: 0 60px 0 0;
    }
  }
  @media (max-width: 1320px) {
    .icon-container {
        width: 28px;
        height: 28px;
        margin-right: 10px;
        display: flex;
        margin-bottom: 0;
        align-items: center;
        justify-content: center;
    }
              
    .mini-title {
        font-size: 1.8rem;
        
    }

    .heading {
        font-size: 2.4rem;
        
    }
  }
  
  @media (max-width: 980px) {
    .professional-specialists .section-title {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--color-navy);
        text-align: center;
        max-width: 1240px;
        margin: 0 auto 60px;
        padding: 0 20px;
        width: 100%;
    }

    .professional-specialists {
      padding: 50px 30px;
    }
  
    .specialist-block, .specialist-block.reverse {
      flex-direction: column;
    }
  
    .image-container, .text-container {
      max-width: 100%;
    }
  }