
  /* Module wrapper for global styling */
  .benefits-container {
/*     max-width: 1280px; */
/*     margin: 0 auto; */
    padding: 4rem 0;
  }

  .benefits-content {
    display: flex;
    gap: 4rem;

  }

.ds-benefit-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

  /* Left Column Styling */
  .benefits-text {
    flex: 1;
  }

  .benefits-heading {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700; /* Bold */
    font-size: 38px;
    line-height: 140%;
    color: #171B25;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .benefits-intro {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 170%;
    color: #171B25;
    margin-bottom: 2rem;
  }

  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 0.25rem;
  }

  .benefit-icon img {
    width: 100%;
    height: 100%;
  }

  .benefit-details {
    flex: 1;
  }

  .benefit-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600; /* Semi-bold */
    font-size: 20px;
    line-height: 140%;
    margin: 0 0 0.5rem 0;
    color: #171B25;
  }

  .benefit-description {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 1.6;
    color: #171B25;
    margin: 0;
  }

  /* Right Column Styling */
  .benefits-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .ds-benefit-module .benefits-content {
    flex-direction: row-reverse;
    align-items:flex-start;
}
  
  /* Responsive Styling */
  @media (max-width: 1200px) {
    .benefits-heading {
      font-size: 32px;
    }
    
    .benefits-intro {
      font-size: 17px;
    }
    
    .ds-benefit-wrapper { margin-bottom:0; }
  }

  @media (max-width: 992px) {
    .benefits-content {
      flex-direction: column-reverse;
      gap: 3rem;
    }
    
    .benefits-image {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
    .benefit-icon { width:28px; height:28px; }
  }

  @media (max-width: 768px) {
    .benefits-container {
      padding: 3rem 0;
    }
    
    .benefits-heading {
      font-size: 28px;
    }
    
    .benefits-intro {
      font-size: 16px;
    }
    
    .benefit-title {
      font-size: 18px;
    }
    
    .benefit-description {
      font-size: 15px;
    }
  }

@media ( max-width:767px ){

.ds-benefit-module .benefits-image {
    max-width: 100%;
    width: 100%;
    flex: none;
}

.ds-benefit-module .benefits-content {
    flex-direction: column-reverse;
}

.ds-benefit-module .benefits-image img {
    width: 100%;
    height: auto;
}

}

  @media (max-width: 480px) {
    .benefits-container {
      padding: 2rem 0;
    }
    
    .benefits-heading {
      font-size: 24px;
    }
    
    .benefits-list {
      gap: 1.25rem;
    }
  }
}