.content-title-with-cards {
  background-color: unset;

  /* Linear gradient */
  background-image: url('../assets/logo-background-v2.1.svg'); /* Additional image */
  background-position: top; /* Position image on the left */
  background-repeat: no-repeat; /* Prevent the image from repeating */

  @media (min-width: 992px) {
    background-image: url('../assets/logo-background-v2.svg'); /* Additional image */
    background-position: left; /* Position image on the left */
    background-size: 30%; /* Scale image to 30% of container width */
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  @media (max-width: 520px) {
    background-size: 100%;
  }

  .section-title {
    font-size: 40px;
    line-height: 50px;
    color: #222222;
    font-weight: 700;
    text-transform: uppercase;

    @media screen and (max-width: 1580px) {
      font-size: 25px;
      line-height: 30px;
    }

    @media screen and (max-width: 991px) {
      padding: 80px 0;
    }

    @media screen and (max-width: 992px) {
      font-size: 20px;
      line-height: 24px;
    }

    @media screen and (max-width: 520px) {
      font-size: 16px;
      line-height: 20px;
    }
  }

  .section-description {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    line-height: 35px;

    @media screen and (max-width: 1580px) {
      font-size: 25px;
      line-height: 28px;
    }

    @media screen and (max-width: 992px) {
      font-size: 20px;
      line-height: 24px;
    }

    @media screen and (max-width: 520px) {
      font-size: 16px;
      line-height: 20px;
    }
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    .card-item {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-right: 0;

      .roles-card {
        background-color: #6800FF0D;
        border-radius: 20px;
        padding: 20px;
        /* max-width: 400px; */
        height: 100%;

        .roles-title {
          font-size: 20px;
          line-height: 24.38px;
          font-weight: 700;
          color: #6800FF;
          text-align: center;
          margin-bottom: 20px;
        }

        .roles-description {
          font-size: 16px;
          line-height: 19.5px;
          font-weight: 500;
          color: #222222;
          text-align: center;
        }
      }
    }

    @media (max-width: 767px) {
      grid-template-columns: repeat(1, 1fr);
    }
  }
}
