* {
    font-family: 'Public Sans';
}

.faq-heading-h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #222;
    font-weight: 700;
}

.faqs-para-p {
    font-size: 20px;
    line-height: 1.5;
    color: #666;
    font-weight: 500;
}

.faq-hero {
    padding: 60px 0px;
}

.faq-hero__title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    text-align: center;
    font-family: 'Public Sans';
}

.faq-hero__desc {
    max-width: 80%;
    margin: 16px auto 40px auto;
    font-size: 24px;
    line-height: 1.4;
    color: #5f5f5f;
    font-weight: 500;
    text-align: center;
}

.faq-search {
    max-width: 80%;
    margin: auto;
    position: relative;
}

.faq-search input {
    width: stretch;
    height: 60px;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    padding: 0px 60px;
    font-size: 20px;
    font-weight: 500;
    background: #fff;
    outline: none;
    transition: 0.3s ease;
    max-width: 100%;
    font-family: 'Public Sans';
}

.faq-search input:focus {
    border-color: #bcbcbc;
}

.faq-search input::placeholder {
    color: #9b9b9b;
}

.faq-search__icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #6b6767;
}

.faq-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.faq-stats__item {
    font-size: 22px;
    color: #4d4d4d;
    font-weight: 500;
}

.faq-stats__item strong {
    color: #222;
    font-weight: 700;
}

/* faq-section */

.faq-section {
    padding: 60px 0;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.faq-section__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    background: #fafafa;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    background: #efeee9;
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}

.faq-icon {
    font-size: 34px;
    color: #6a6a6a;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 95%;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #1664d8;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-empty-state {
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    background: #fafafa;
    padding: 30px;
}

.faq-empty-state h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.faq-empty-state p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}



/* faqs-categories */

.faqs-categories {
    padding: 60px 0;
}

.faqs-categories__head {
    margin-bottom: 35px;
}

.faqs-categories__head h2 {
    margin-bottom: 10px;
}

.faqs-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.faqs-category-card {
    border: 1px solid #dddddd;
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faqs-category-card:hover {
    transform: translateY(-3px);
    border-color: #cfcfcf;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.faqs-category-card--active {
    border-color: #222;
    background: #efeee9;
}

.faqs-category-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    padding: 12px;
    background: #1e695524;
    border-radius: 12px;
}

.faqs-category-card__content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #222;
    font-weight: 700;
    margin: 10px 0px;
}

.faqs-category-card__content span {
    font-size: 20px;
    color: #6b6b6b;
    font-weight: 500;
}

/* faq-recent-update */

.faq-recent-update {
    padding: 60px 0;
    border-top: 1px solid #e4e4e4;
}

.faq-recent-update__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.faq-recent-update__list {
    display: flex;
    flex-direction: column;
}

.faq-recent-update__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 16px 0;
    text-decoration: none;
    border-top: 1px solid #dddddd;
    transition: 0.3s ease;
}

.faq-recent-update__item:first-child {
    border-top: unset;
}

.faq-recent-update__item h3 {
    font-size: 20px;
    line-height: 1.4;
    color: #222;
    font-weight: 600;
}

.faq-recent-update__item span {
    font-size: 20px;
    color: #7b7b7b;
    font-weight: 500;
    white-space: nowrap;
}

/* request-demo */

.request-demo {
    padding: 0 0 40px;
    padding-bottom: 0px;
}

.request-demo__wrapper {
    background: #E65F46;
    border-radius: 0;
    padding: 60px 0px;
    text-align: center;
}

.request-demo__wrapper h2 {
    margin-bottom: 16px;
    color: #fff;
}

.request-demo__wrapper p {
    margin-bottom: 36px;
    color: #fff;
}

.request-demo__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.request-demo__btn {
    min-width: 200px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s ease;
    padding: 14px 24px;
}

.request-demo__btn--white {
    background: #ffffff;
    color: #12345a;
    border: 1px solid #fff;
}

.request-demo__btn--white:hover {
    background: transparent;
    color: #fff;
}

.request-demo__btn--border {
    border: 1px solid #fff;
    color: #ffffff;
    background: transparent;
}

.request-demo__btn--border:hover {
    background: #ffffff;
    color: #12345a;
}

.request-demo__links {
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.request-demo__links span,
.request-demo__links a {
    font-size: 18px;
    line-height: 1.5;
    color: #7b7b7b;
    font-weight: 600;
    text-decoration: none;
}

.request-demo__links a:hover {
    color: #222;
}

.request-demo__links a::after {
    content: "·";
    margin-left: 10px;
    color: #9a9a9a;
}

.request-demo__links a:last-child::after {
    display: none;
}

.faq-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.faq-pagination__item a,
.faq-pagination__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    background: #fff;
}

.faq-pagination__item .current {
    background: #222;
    border-color: #222;
    color: #fff;
}

@media (max-width: 1199px) {
    .faq-hero__title {
        font-size: 32px;
    }

    .faq-hero__desc {
        font-size: 20px;
    }

    .faq-heading-h2 {
        font-size: 28px;
    }

    .faqs-category-card__content h3 {
        font-size: 22px;
    }

    .faqs-category-card__content span {
        font-size: 18px;
    }

    .faqs-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-recent-update__top {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 0px;
    }

    .faq-hero__title {
        font-size: 24px;
        line-height: 1.4;
    }

    .faq-hero__desc {
        margin: 12px auto 25px auto;
        font-size: 20px;
        max-width: 100%;
        font-size: 16px;
    }

    .faq-search {
        max-width: 100%;
    }

    .faq-search__icon {
        left: 15px;
        width: 20px;
        height: 20px;
    }

    .faq-search input {
        height: 44px;
        border-radius: 10px;
        padding: 0px 40px;
        font-size: 16px;
        max-width: 100%;
    }

    .faq-stats {
        gap: 14px;
        margin-top: 20px;
        row-gap: 5px;
    }

    .faq-stats__item {
        font-size: 16px;
    }

    .faq-section,
    .faqs-categories,
    .request-demo__wrapper,
    .faq-recent-update {
        padding: 40px 0;
    }

    .faq-heading-h2 {
        font-size: 20px;
    }

    .faqs-para-p {
        font-size: 15px;
    }

    .faq-section__top {
        gap: 5px;
        margin-bottom: 24px;
        flex-direction: column;
        align-items: unset;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-answer {
        padding: 18px;
        padding-top: 0px;
    }

    .faq-link {
        margin-top: 12px;
        font-size: 15px;
    }

    .faqs-category-card {
        border-radius: 12px;
        padding: 12px;
    }

    .faqs-category-card__content h3 {
        font-size: 16px;
        margin: 0px;
        margin-top: 10px;
    }

    .faqs-category-card__content span {
        font-size: 14px;
        font-weight: 500;
    }

    .faq-recent-update__top {
        gap: 10px;
        margin-bottom: 16px;
    }

    .faq-recent-update__item h3 {
        font-size: 14px;
    }

    .faq-recent-update__item span {
        font-size: 12px;
    }

    .request-demo__btn {
        min-width: 180px;
        border-radius: 8px;
        font-size: 18px;
        padding: 14px 24px;
        line-height: 1.2;
    }

    .request-demo__links span,
    .request-demo__links a {
        font-size: 15px;
    }

    .request-demo__links {
        padding-top: 20px;
        row-gap: 5px;
    }

    .request-demo__wrapper h2 {
        margin-bottom: 10px;
    }


    .faqs-category-card__icon img {
        width: 18px;
        height: 18px;
        padding: 10px;
        border-radius: 8px;
    }
}









.faq-taxonomy-hero {
    padding: 28px 0 30px;
    border-bottom: 1px solid #e3e3e3;
}

.faq-taxonomy-hero__title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-taxonomy-hero__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-taxonomy-hero__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.faq-taxonomy-hero__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.faq-taxonomy-hero__desc {
    max-width: 1080px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.65;
    color: #555;
    font-weight: 500;
}

.faq-taxonomy-jump {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.faq-taxonomy-jump__label {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    font-weight: 500;
}

.faq-taxonomy-jump__links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-taxonomy-jump__link {
    position: relative;
    color: #1664d8;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.faq-taxonomy-jump__link:hover {
    text-decoration: underline;
}

.faq-taxonomy-jump__link:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    color: #9a9a9a;
}

.faq-taxonomy-list {
    padding: 34px 0 40px;
}

.faq-taxonomy-group+.faq-taxonomy-group {
    margin-top: 34px;
}

.faq-taxonomy-group__title {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #333;
    font-weight: 700;
}

.faq-taxonomy-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-taxonomy-card {
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    background: #fafafa;
    padding: 22px 24px 20px;
}

.faq-taxonomy-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.faq-taxonomy-card__head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    color: #222;
}

.faq-taxonomy-card__arrow {
    color: #7d7d7d;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 3px;
}

.faq-taxonomy-card p {
    margin: 10px 0 0;
    max-width: 96%;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
}

.faq-taxonomy-related {
    padding: 0 0 40px;
}

.faq-taxonomy-related__title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.4;
    color: #555;
    font-weight: 600;
}

.faq-taxonomy-related__list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-taxonomy-related__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f2f0ea;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    transition: 0.3s ease;
}

.faq-taxonomy-related__pill:hover {
    background: #e9e5dc;
}

/* details page css */
.faq-details-main {
    padding: 60px 0;
}

.faq-details-main .faq-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: #272727;
    margin-bottom: 30px;
}

.faq-details-main .faqs-writter {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.faq-details-main .short_name {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-details-main .short_name span {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.faq-details-main .faqs-write-details h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    color: #232323;
}

.faq-details-main .faqs-write-details h3 span {
    font-weight: 600;
}

.faq-details-main .faqs-write-details p {
    margin: 0;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.5;
}

.faq-details-main .details-ans {
    background: #eef5ff;
    border-left: 3px solid #2563eb;
    padding: 28px 32px;
}

.faq-details-main .details-ans>span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1d4ed8;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.faq-details-main .details-ans p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #1e3a5f;
    font-weight: 500;
}

.faq-root-content {
    padding: 20px 0px;
    margin: 30px 0px;
    border-top: 1px solid #00000016;
    border-bottom: 1px solid #00000016;
}

.faq-root-content h2,
.faq-root-content h3,
.faq-root-content h4,
.faq-root-content h5,
.faq-root-content h6 {
    margin-bottom: 12px;
    margin-top: 30px;
    font-weight: 600;
}

.faq-root-content h2 {
    font-size: 28px;
    line-height: 1.2;
}

.faq-root-content h3 {
    font-size: 25px;
    line-height: 1.2;

}

.faq-root-content h4 {
    font-size: 24px;
    line-height: 1.2;
}

.faq-root-content h5,
.faq-root-content h6 {
    font-size: 20px;
    line-height: 1.2;
}

.faq-root-content p,
.faq-root-content ul li,
.faq-root-content ol li,
.faq-root-content a {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.faq-root-content ul li,
.faq-root-content ol li {
    list-style: unset;
}

.faq-root-content ul,
.faq-root-content ol {
    padding-left: 16px;
}


@media (max-width: 991px) {

    .faq-details-main .faq-title {
        font-size: 38px;
    }

    .faq-details-main .details-ans p {
        font-size: 24px;
    }

    .faq-details-main .faqs-write-details h3 {
        font-size: 20px;
    }

    .faq-details-main .faqs-write-details p {
        font-size: 16px;
    }

}

@media (max-width: 1199px) {
    .faq-taxonomy-hero__title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .faq-taxonomy-hero {
        padding: 18px 0 24px;
    }

    .faq-taxonomy-hero__title-wrap {
        align-items: flex-start;
    }

    .faq-taxonomy-hero__icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .faq-taxonomy-hero__icon img {
        width: 20px;
        height: 20px;
    }

    .faq-taxonomy-hero__title {
        font-size: 24px;
        line-height: 1.35;
    }

    .faq-taxonomy-hero__desc {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-taxonomy-jump {
        gap: 6px;
        margin-top: 14px;
    }

    .faq-taxonomy-jump__label,
    .faq-taxonomy-jump__link {
        font-size: 14px;
    }

    .faq-taxonomy-list {
        padding: 28px 0 32px;
    }

    .faq-taxonomy-group+.faq-taxonomy-group {
        margin-top: 28px;
    }

    .faq-taxonomy-group__title {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .faq-taxonomy-card {
        border-radius: 14px;
        padding: 16px;
    }

    .faq-taxonomy-card__head h3 {
        font-size: 16px;
    }

    .faq-taxonomy-card__arrow {
        font-size: 18px;
    }

    .faq-taxonomy-card p {
        margin-top: 8px;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-taxonomy-related {
        padding-bottom: 32px;
    }

    .faq-taxonomy-related__title {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .faq-taxonomy-related__list {
        gap: 10px;
    }

    .faq-taxonomy-related__pill {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* faqs details css */

    .faq-details-main {
        padding: 40px 0;
    }

    .faq-details-main .faq-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .faq-details-main .short_name span {
        font-size: 16px;
        font-weight: 700;
        color: #2563eb;
    }

    .faq-details-main .faqs-writter {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        align-items: anchor-center;
    }

    .faq-details-main .short_name {
        width: 40px;
        height: 40px;
    }

    .faq-details-main .faqs-write-details h3 {
        font-size: 14px;
    }

    .faq-details-main .faqs-write-details p {
        font-size: 12px;
        line-height: 1.4;
    }

    .faq-details-main .details-ans {
        padding: 22px 20px;
    }

    .faq-details-main .details-ans p {
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-details-main .details-ans>span {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.6;
    }

    .faq-root-content h2,
    .faq-root-content h3,
    .faq-root-content h4,
    .faq-root-content h5,
    .faq-root-content h6 {
        margin-bottom: 8px;
        margin-top: 24px;
    }

    .faq-root-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .faq-root-content h3 {
        font-size: 20px;
        line-height: 1.2;

    }

    .faq-root-content h4 {
        font-size: 18px;
        line-height: 1.2;
    }

    .faq-root-content h5,
    .faq-root-content h6 {
        font-size: 16px;
        line-height: 1.2;
    }

    .faq-root-content p,
    .faq-root-content ul li,
    .faq-root-content ol li,
    .faq-root-content a {
        font-size: 15px;
        line-height: 23px;
    }

    .faq-root-content td,
    .faq-root-content th {
        font-size: 14px;
    }

    .faq-root-content {
        padding: 0px;
        padding-bottom: 20px;
        margin-bottom: 0px;
    }
}