.document-breadcrumb-container {
    background-color: #2A7BB81A;
}

.document-banner {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-banner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #1F4781 0%, rgba(255, 255, 255, 0) 100%);
}

.document-banner h2 {
    position: relative;
    z-index: 10;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.document-content p {
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
}

@media (max-width:606px) {
    .document-banner {
        min-height: 570px;
    }
}


#documents-page {
    margin: 0 auto;
    padding: 50px;
    background-color: #F8F8F8;
    color: var(--dark);
}

#documents-page .document-content {
    padding: 15px;
    border: 1px solid var(--border-gray);
    background-color: #fff;
    border-radius: 5px;
    margin-top: 25px;
    min-height: 600px;
}

#documents-page p {
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 19px;
}

/* Ordered List (ol) Styling */
#documents-page ol {
    padding-right: 30px;
    margin-bottom: 20px;
    list-style: none;
    counter-reset: custom-counter;
}

#documents-page ol li {
    position: relative;
    margin-bottom: 15px;
    padding-right: 35px;
    color: var(--dark);
}

#documents-page ol li:before {
    content: counter(custom-counter) ".";
    counter-increment: custom-counter;
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

/* Unordered List (ul) Styling */
#documents-page ul {
    padding-right: 30px;
    margin-bottom: 20px;
    list-style: none;
}

#documents-page ul li {
    position: relative;
    margin-bottom: 15px;
    padding-right: 35px;
    color: var(--dark);
}

#documents-page ul li:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--light-red);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

/* Link Styling */
#documents-page a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

#documents-page a:hover {
    color: var(--primary-hover);
}

/* Hover Effects for List Items */
#documents-page ol li:hover:before {
    background-color: var(--primary-hover);
}

#documents-page ul li:hover:before {
    background-color: var(--primary);
}


/************* FAQ Page Start ******************/
.faq-wrapper-heading h1 {
    text-align: left;
    padding-top: 25px;
    font-size: 28px;
}

.faq-wrapper {
    float: left;
    width: 100%;
    margin: 0px auto;
}

.faq-wrapper .accordion {
    margin-bottom: 1.5rem;
    width: 100%;
}

.faq-wrapper .card {
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-top: .1rem solid #ebebeb
}

.faq-wrapper .card:last-child {
    border-bottom: .1rem solid #ebebeb
}

.faq-wrapper .card-header {
    position: relative;
    padding: 0;
    border: none;
    font-weight: 700;
    line-height: 1.5;
    background-color: transparent;
    margin: 0
}

.faq-wrapper .card-header::after {
    display: block;
    clear: both;
    content: ''
}

.faq-wrapper .card-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0
}

.faq-wrapper .card-title a {
    display: block;
    padding: 1.7rem 4rem 1.7rem 1.2rem;
    position: relative;
    color: #c96;
    border: none;
    background-color: transparent;
    outline: none !important
}

.faq-wrapper .card-title a i {
    min-width: 17px;
    margin-right: 2.4rem
}

.faq-wrapper .card-title a:before {
    color: var(--primary);
    font-family: "Font Awesome 6 Free";
    content: '\f077';
    font-weight: 900;
    display: inline-block;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    line-height: 1;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all 0.3s;
}

.faq-wrapper .card-title a.collapsed {
    color: #333
}

.faq-wrapper .card-title a.collapsed:hover,
.faq-wrapper .card-title a.collapsed:focus {
    color: #f39414;
}

.faq-wrapper .card-title a.collapsed:before {
    color: var(--primary);
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    content: '\f078';
    font-weight: 900;
}

.faq-wrapper .card-body {
    padding: .4rem 4rem 1.8rem 1.2rem;
    border: none;
    border-radius: 0
}

.faq-wrapper .accordion-icon .card-body {
    padding-left: 5.5rem !important
}

.faq-wrapper .accordion-plus .card-title a:before {
    content: '\f28e'
}

.faq-wrapper .accordion-plus .card-title a.collapsed:before {
    content: '\f2c2'
}

.faq-wrapper .accordion-rounded .card:first-child {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.faq-wrapper .accordion-rounded .card:last-child {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.faq-wrapper .accordion-rounded .card:first-child {
    border-bottom: 0px;
}

.faq-wrapper .card.card-box .card-title a {
    padding-right: 2rem
}

.faq-wrapper .card.card-box .card-title a:before {
    left: 2rem
}

.faq-wrapper .card.card-box .card-title a i {
    margin-right: 1.4rem
}

.faq-wrapper .card.card-box .card-body {
    padding: 1rem 2rem 2rem
}

.faq-wrapper .card.card-sm .card-title {
    font-size: 1.6rem;
    letter-spacing: -.01em
}

.faq-wrapper h2.card-title {
    padding: 0px;
    text-align: left;
}

.faq-wrapper .card.card-sm .card-title a {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.faq-wrapper .card.card-sm .card-title a:before {
    left: 2rem
}

.faq-wrapper .card.card-sm .card-body {
    padding: 1rem 2rem 2rem;
    font-size: 14px;
}

.faq-wrapper .card.bg-light,
.faq-wrapper .card.bg-white {
    background-color: #fff !important;
    border: .1rem solid #ebebeb
}

.faq-wrapper .card.bg-light .card-title a,
.faq-wrapper .card.bg-white .card-title a {
    background-color: #fff
}

.faq-wrapper .card.bg-light .card-title a.collapsed {
    background-color: #fafafa
}

.faq-wrapper .card.bg-light .card-title a.collapsed {
    background-color: #ffffff;
}

.faq-wrapper .card.bg-light .card-title a,
.faq-wrapper .card.bg-white .card-title a {
    background-color: #fff;
    color: black;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-align: right;
}

/************* FAQ Page End ******************/