.role-detail-list{
    position: relative;
    padding-left: 2rem;
    list-style-type: none;
    margin: 20px 0;
}
.role-detail-list::before{
    content: url(../../../../public/images/bullet-list.png);
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 25px;
    background-size: 100% 100%;
}
.jobDetailWrapper .about-role {
    line-height: 1.6;
    color: #333; /* Customize with your preferred text color */

    /* Headings */
    h1, h2, h3, h4, h5, h6 {
      margin-bottom: 1rem;
      font-weight: 700;
      color: #111; /* Customize with your preferred heading color */
      font-family: "IvyMode-Regular";
    }

    h1 { font-size: 2.5rem; /* Customize size */ }
    h2 { font-size: 2rem; /* Customize size */ }
    h3 { font-size: 1.75rem; /* Customize size */ }
    h4 { font-size: 1.5rem; /* Customize size */ }
    h5 { font-size: 1.25rem; /* Customize size */ }
    h6 { font-size: 1rem; /* Customize size */ }

    /* Paragraph */
    p {
      font-size: 1rem;
        margin-bottom: 1rem;
        color: #4D4D4D;
        word-wrap: break-word;
    }

    /* Lists */
    ul, ol {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    ul{
      list-style-type: circle;
    }
    ol{
      list-style: decimal;
    }
    li {
        margin-bottom: 0.5rem;
        list-style-position: inside; /* Customize with your preferred list style */
    }

    /* Strong */
    strong {
        font-weight: bold;
        color: #000; /* Customize with your preferred strong tag color */
    }
}