:root {
    --navy-dark: #12456f;
    --navy-mid: #1b5f95;
    --sky: #4fa8de;
    --ebook-blue: #2c9af2;
    --ebook-blue-2: #1983ca;
    --teal-heading: #0c7a9c;
    --link-blue: #1aa8d6;
    --orange: #e67042;
    --utility-blue: #5098ec;
    --page-bg: #f7f7f7;
    --border: #e6e6e6;
    --ink: #222222;
    --body-text: #595959;
    --muted: #8a8a8a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {

    line-height: 1.25;
    margin: 0 0 0.5em;
    font-weight: 600;
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--link-blue);
    text-decoration: none;
}

/* ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
} */

.mobile-block {
    display: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

/* ---------- Layout ---------- */
.layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 0 70px;
    align-items: start;
}

aside.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
}

main.content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

main.content .panel {
    padding: 2.5% 2.5%;
    scroll-margin-top: 96px;
}

main.content .panel.no-pad-top {
    padding-top: 0;
}

/* ---------- TOC card ---------- */
.toc-card {
    padding: 22px 22px 16px;
    box-sizing: border-box;
}

@media (min-width: 981px) {
    .toc-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .toc-card ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }
}

.toc-card h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
}

.toc-card li {
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eaeaea;
}

.toc-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.toc-card a {
    display: flex;
    gap: 8px;
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 0.86rem;
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    align-items: flex-start;
}

/* .toc-card a::before {
    content: "\00b7";
    color: var(--muted);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
} */

/* Sub-list support for multi-level TOCs */
.toc-card .toc-sub-list {
    margin-top: 4px;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: none;
}

.toc-card .toc-sub-list li {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.toc-card .toc-sub-list a {
    font-size: 0.82rem;
    color: var(--body-text);
    font-weight: 400;
    padding: 3px 6px;
}

.toc-card .toc-sub-list a::before {
    content: none;
}

.toc-sub-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 2px;
}

.toc-card a:hover {
    background: var(--page-bg);
    color: var(--link-blue);
}

/* ---------- Resource cards ---------- */
.resource-card {
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    background-color: #2C9AF2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card.playbook {
    /* background: linear-gradient(160deg, #2aa6c9 0%, #1b6fa6 100%); */
    background-color: #2CCAF2;
}

.resource-thumb {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    height: 120px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.resource-thumb svg {
    height: 100%;
    width: 100%;
}

.resource-card .kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}

.resource-card h4 {
    color: #fff;
    font-size: 0.94rem;
    margin-bottom: 14px;
    line-height: 1.4;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--ebook-blue-2);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 16px;
    border-radius: 100px;
}

.resource-card.playbook .dl-btn {
    color: #1b6fa6;
}

/* Image-based resource cards and description text styles */
.resource-card .resource-thumb.image-thumb {
    background: transparent;
    border: none;
    height: 200px;
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-card .resource-thumb.image-thumb img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.resource-card .resource-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.resource-card .resource-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 400;
}

.resource-card .dl-btn {
    padding: 10px 24px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.resource-card .dl-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.resource-card .dl-btn:active {
    transform: translateY(0);
}

.resource-card .dl-btn svg {
    flex-shrink: 0;
}

/* ---------- Blue banners ---------- */
.banner {
    border-radius: 16px;
    padding: 2.5% 2.5%;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 32px;
}

.banner-standalone {
    background: linear-gradient(120deg,
            var(--navy-dark) 0%,
            var(--navy-mid) 55%,
            var(--sky) 130%);
}

/* Web / Desktop (> 980px) & Tab View (601px - 980px): show hero-banner background image and hide gradient */
@media (min-width: 601px) {
    #top-hero {
        background-image: url('/assets/images/pillarpage/hero-banner.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
            width: 100%;
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
        box-sizing: border-box;
         
    }

    #top-hero-two {
        background-image: url('/assets/images/pillarpage/medical-banner.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
     width: 100%;
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
        box-sizing: border-box;
   
    }

    #top-hero-three {
        background-image: url('/assets/images/pillarpage/kol-banner.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
           width: 100%;
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
        box-sizing: border-box;

    }

    #top-hero .banner-art,
    #top-hero-two .banner-art,
    #top-hero-three .banner-art {
        display: none;
    }

    .pharma-banner-box {
        background-image: url('/assets/images/pillarpage/hero-banner-two.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
        box-sizing: border-box;
        padding: 4% !important;

    }

    .pharma-banner-box-two {
        background-image: url('/assets/images/pillarpage/medical-sub-banner.png') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
             width: 100%;
        height: auto;
        aspect-ratio: unset;
        overflow: visible;
        box-sizing: border-box;
               padding: 4% !important;
    }
}

.subrecord-banner {
    background: linear-gradient(120deg,
            var(--navy-dark) 0%,
            var(--navy-mid) 100%);
}

.subrecord-banner-title {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
}

.subrecord-banner-btn {
    background: #fff;
    color: var(--navy-dark);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 700;
}

.panel-no-pad {
    padding: 0 !important;
}

.panel-body {
    padding: 2.5% 2.5%;
}

.banner-top {
    border-radius: 12px;
    margin-bottom: 24px;
    padding: 24px 28px;
    background: linear-gradient(90deg,
            var(--navy-dark) 0%,
            var(--navy-mid) 40%,
            var(--sky) 78%,
            #ffffff 100%);
}

.banner-top h2 {
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.banner-top h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.banner-top p {
    color: #e4effa;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
    max-width: 760px;
}

.banner-text {
    flex: 1;
    min-width: 0;
}

.banner-art {
    flex-shrink: 0;
    opacity: 0.9;
}

.tag-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hero-rule {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 16px 0;
}

.hero-date {
    font-size: 0.85rem;
    color: #e4effa;
    margin-bottom: 0;
}

/* ---------- Section basics ---------- */
h2.plain-heading {
    color: var(--teal-heading);
    font-size: 1.45rem;
}

h3.plain-heading {
    color: var(--teal-heading);
    font-size: 1.1rem;
}

.bullet-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    scroll-margin-top: 96px;
}

.bullet-item:first-of-type {
    padding-top: 0;
}

.bullet-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.bullet-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.bullet-item h3.dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
    flex-shrink: 0;
}

.bullet-item p {
    margin: 0;
    font-size: 0.94rem;
}

.plain-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.plain-item:first-of-type {
    padding-top: 0;
}

.plain-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.plain-item h3 {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.plain-item p {
    margin: 0;
    font-size: 0.94rem;
}

h3.sq {
    display: flex;
    align-items: center;
    gap: 10px;
}

h3.sq::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: #D9D9D9;
    flex-shrink: 0;
}

/* ---------- Grids ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.info-card h3 {
    color: var(--link-blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- Lifecycle timeline ---------- */
.timeline {
    max-width: 640px;
    margin: 8px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-box {
    width: 100%;
    border-radius: 12px;
    padding: 22px 28px;
    text-align: center;
}

.t-box h3 {
    color: var(--link-blue);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.t-box p {
    font-size: 0.88rem;
    margin: 0;
}

.t-arrow {
    padding: 8px 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.t-box-red {
    background: #FFF6F6;
}

.t-box-yellow {
    background: #FFFDF6;
}

.t-box-green {
    background: #F6FFF8;
}

.t-box-blue {
    background: #F6FBFF;
}

.t-box-purple {
    background: #F7F6FF;
}

.t-box-grey {
    background: #F5F5F6;
}

.related-read {
    display: flex;
    gap: 8px;
    background: #effaff;
    border: 1px solid #cfe9f7;
    border-radius: 100px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--ink);
}

/* ---------- Table ---------- */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
}

table.lifecycle-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

table.lifecycle-table th {
    text-align: left;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

table.lifecycle-table td {
    padding: 15px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    vertical-align: top;
}

table.lifecycle-table td:first-child {
    font-weight: 600;
    color: var(--link-blue);
    white-space: nowrap;
}

/* ---------- Software feature list ---------- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-row {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 0.9rem;
}

.feature-row p {
    margin: 0;
}

.konectar-blurb {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 0.94rem;
    color: var(--ink);
}

.cta-pill {
    display: block;
    text-align: center;
    background: #effaff;
    border: 1px solid #cfe9f7;
    border-radius: 100px;
    padding: 16px 20px;
    font-size: 0.94rem;
    color: var(--ink);
    margin-top: 18px;
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--ink);
}

.faq-q .chev {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--ink);
}

.faq-item.open .chev {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-a {
    max-height: 600px;
    transition: max-height 0.35s ease-in-out;
}

.faq-a p {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    margin: 0;
    color: var(--body-text);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        align-items: stretch;
    }


    aside.sidebar {
        display: contents;
    }

    main.content {
        display: contents;
    }

    .banner-standalone {
        grid-column: span 2;
        order: 1;
    }

    .toc-card {
        grid-column: span 2;
        order: 2;
        min-width: 0;
        padding: 16px 20px;
    }

    .toc-card h4 {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        user-select: none;
    }

    .toc-card h4::after {
        content: "\25BC";
        font-size: 0.65rem;
        color: var(--muted);
        transition: transform 0.25s ease;
    }

    .toc-card.open h4::after {
        transform: rotate(180deg);
    }

    .toc-card.open h4 {
        border-bottom: 1px solid var(--border);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }

    .toc-card>ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
        margin: 0;
    }

    .toc-card.open>ul {
        max-height: 1200px;
        transition: max-height 0.35s ease-in-out;
        margin-top: 8px;
    }

    main.content>*:not(.banner-standalone) {
        grid-column: span 2;
        order: 3;
    }

    .resource-card {
        grid-column: span 1;
        order: 4;
        min-width: 0;
    }

    .banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .banner-top {
        background: linear-gradient(135deg,
                var(--navy-dark) 0%,
                var(--navy-mid) 60%,
                var(--sky) 100%);
        padding: 4% !important;
    }

    .banner-art {
        align-self: center;
        margin-top: 8px;
    }
}



@media (max-width: 600px) {
    .layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-block {
        display: block !important;
    }

    .mobile-block img {
        border-radius: 12px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }




    aside.sidebar {
        display: contents;
    }

    main.content {
        display: contents;
    }

    .toc-card {
        order: 2;
        width: 100%;
    }

    .resource-card {
        order: 4;
        width: 100%;
    }

    #top-hero,
    #top-hero-two,
    #top-hero-three,
    .pharma-banner-box-two,
    .pharma-banner-box {
        background-image: linear-gradient(120deg,
                var(--navy-dark) 0%,
                var(--navy-mid) 55%,
                var(--sky) 130%) !important;
        background-size: auto !important;
        background-position: 0 0 !important;
        background-repeat: repeat !important;
        padding: 4% !important;

    }

    .panel {
        padding: 5% !important;
    }

    #top-hero .banner-art,
    #top-hero-two .banner-art,
    #top-hero-three .banner-art {
        display: block;
    }
}

@media (max-width: 480px) {
    .layout {
        padding: 16px 0 40px;
        gap: 16px;
    }

    .banner h1 {
        font-size: 1.5rem !important;
    }

    .related-read {
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
        border-radius: 12px;

    }

    .faq-q {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-a p {
        padding: 0 16px 16px;
        font-size: 0.85rem;
    }
}

.sub-paragraph h6 {
    font-size: 0.94rem;
}


.sub-paragraph {
    margin: 0;
    font-size: 0.94rem;
}

.title-desc {
    margin: 0;
    font-size: 0.94rem;
}

.banner h1 {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
}

.pharma-banner-box {
    padding: 32px 36px;
    border-radius: 16px;
    color: #fff;
}

.pharma-banner-box-two {
    padding: 32px 36px;
    border-radius: 16px;
    color: #fff;
}

.pharma-banner-box h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.pharma-banner-box p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

.pharma-banner-box-two h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.pharma-banner-box-two p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- Software Banner Box (KOL Management Software) ---------- */
.software-banner-box {
    background: linear-gradient(95deg, #15609f 0%, #1a6cb3 40%, #207ec6 70%, #56afe0 92%, #a5dcf8 100%);
    border-radius: 16px;
    padding: 36px 40px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.software-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.software-banner-text {
    flex: 1 1 54%;
    min-width: 0;
}

.software-banner-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.software-banner-subtitle {
    color: #ffffff;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.software-banner-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    line-height: 1.55;
    margin-bottom: 0;
}

.software-banner-desc a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.software-banner-desc a:hover {
    color: #e4effa;
}

.software-banner-img-wrap {
    flex: 1 1 46%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.software-banner-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive view controls:
   - Web view (>980px): Show image on right
   - Tab view (601px - 980px): Show image on right
   - Mobile view (<=600px): Hide image, show blue gradient
*/
@media (max-width: 980px) and (min-width: 601px) {
    .software-banner-box {
        padding: 28px 30px;
    }

    .software-banner-content {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .software-banner-text {
        flex: 1 1 52%;
    }

    .software-banner-img-wrap {
        display: flex !important;
        flex: 1 1 48%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .software-banner-box {
        padding: 24px 20px;
        background: linear-gradient(120deg, #15609f 0%, #1a6cb3 55%, #4fa8de 100%);
    }

    .software-banner-content {
        flex-direction: column;
    }

    /* .software-banner-img-wrap {
        display: none !important;
    } */

    .software-banner-text {
        width: 100%;
    }
}

/* ---------- KOL Type Cards (Established, Rising, Similar KOLs) ---------- */
.kol-type-card {
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.kol-type-card h3 {
    color: var(--link-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
}

.kol-type-card p {
    font-size: 0.92rem;
    color: var(--body-text);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ---------- CTA Banner Card (Above FAQ) ---------- */
.cta-banner-card {
    background: #2b96ec !important;
    border-radius: 16px;
    padding: 36px 40px;
    color: #ffffff;
    border: none !important;
    box-shadow: 0 4px 16px rgba(43, 150, 236, 0.15);
}

.cta-card-title {
    color: #ffffff !important;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
}

.cta-card-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.92rem, 1.1vw, 1.02rem);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 820px;
}

.cta-card-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2b96ec;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cta-card-btn:hover {
    background-color: #f4f9ff;
    color: #1b84d8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
    .cta-banner-card {
        padding: 30px 28px;
    }
}

@media (max-width: 600px) {
    .cta-banner-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cta-card-title {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .cta-card-desc {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .cta-card-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
}


.button-block {
    height: 30px;
    width: 30px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


@media (min-width: 768px) and (max-width: 992px) {
    .subtitle p{
        font-size: 13px !important;
    }
}