.SPL-Page {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 8%, rgba(2, 169, 199, .14), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(203, 183, 155, .10), transparent 32%),
        #0a0313;
}

.SPL-Page:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 106px 106px;
    mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.SPL-Page > * {
    position: relative;
    z-index: 1;
}

/* =========================
   HERO
========================= */

.spl-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 80px;
}

.spl-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .2;
    pointer-events: none;
}

.spl-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spl-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 70px;
}

.spl-crumbs {
    margin-bottom: 26px;
}

.spl-crumbs .breadcrumb {
    justify-content: flex-start;
}

.spl-eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    padding: 0 24px;
    border: 1px solid rgba(203, 183, 155, .82);
    border-radius: 30px;
    color: #cbb79b;
    font-size: 17px;
    line-height: 1.2;
}

.spl-title {
    margin-top: 24px;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: .4px;
    color: #fff;
}

.spl-title:after {
    content: "";
    display: block;
    width: 92px;
    height: 4px;
    margin-top: 24px;
    border-radius: 20px;
    background: #02a9c7;
}

.spl-hero-text {
    max-width: 760px;
    margin-top: 28px;
    color: #d8d9df;
    font-size: 24px;
    line-height: 1.55;
}

.spl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 42px;
}

.spl-main-btn,
.spl-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 48px;
    border-radius: 3px;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.spl-main-btn {
    background: #02a9c7;
    color: #fff;
}

.spl-secondary-btn {
    border: 1px solid rgba(203, 183, 155, .55);
    color: #fff;
}

.spl-main-btn:hover,
.spl-secondary-btn:hover {
    background: #cbb79b;
    border-color: #cbb79b;
    color: #0a0313;
}

.spl-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 54px;
}

.spl-hero-points div {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(21, 75, 97, .82);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(25,34,56,.78), rgba(12,17,30,.92));
}

.spl-hero-points b {
    display: block;
    margin-bottom: 8px;
    color: #02a9c7;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 30px;
}

.spl-hero-points span {
    display: block;
    color: #abaeb3;
    font-size: 17px;
    line-height: 1.45;
}

.spl-hero-visual {
    position: relative;
}

.spl-hero-visual:before {
    content: "";
    position: absolute;
    inset: 26px -22px -22px 22px;
    border: 1px solid rgba(2,169,199,.35);
    border-radius: 30px;
    background: rgba(2,169,199,.04);
}

.spl-hero-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(25,34,56,.9), rgba(10,3,19,.88));
    border: 1px solid rgba(203,183,155,.28);
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 10% 100%, 0 92%);
}

.spl-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.1;
    object-fit: contain;
    object-position: center;
    padding: 34px;
}

/* =========================
   QUICK NAV
========================= */

.spl-nav-section {
    position: sticky;
    top: 70px;
    z-index: 5;
    padding: 14px 0;
    background: rgba(10, 3, 19, .82);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(21,75,97,.42);
    border-bottom: 1px solid rgba(21,75,97,.42);
}

.spl-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spl-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(21,75,97,.9);
    border-radius: 999px;
    color: #d8d9df;
    background: rgba(25,34,56,.35);
    font-size: 16px;
    transition: .25s ease-in-out;
}

.spl-nav a:hover {
    color: #0a0313;
    background: #02a9c7;
    border-color: #02a9c7;
}

/* =========================
   COMMON HEADINGS
========================= */

.spl-section-head {
    max-width: 860px;
    margin: 0 auto 46px;
    text-align: center;
}

.spl-section-head .spl-eyebrow,
.spl-content-head .spl-eyebrow,
.spl-cta-box .spl-eyebrow {
    margin: 0 auto;
}

.spl-section-head h2,
.spl-content-head h2,
.spl-cta-box h2 {
    margin-top: 22px;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 52px;
    line-height: 1.25;
}

.spl-section-head p,
.spl-content-head p,
.spl-cta-box p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #abaeb3;
    font-size: 20px;
    line-height: 1.55;
}

/* =========================
   BENEFITS
========================= */

.spl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.spl-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(21,75,97,.82);
    background:
        radial-gradient(circle at 0 0, rgba(2,169,199,.13), transparent 38%),
        linear-gradient(145deg, rgba(25,34,56,.82), rgba(12,17,30,.96));
}

.spl-card span,
.spl-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    color: #12184d;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 15px;
}

.spl-card h3,
.spl-process-grid h3 {
    margin-top: 26px;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 27px;
    line-height: 1.25;
}

.spl-card p,
.spl-process-grid p {
    margin-top: 14px;
    color: #abaeb3;
    font-size: 17px;
    line-height: 1.55;
}

/* =========================
   WHEN SECTION
========================= */

.spl-two-col {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 44px;
    align-items: start;
}

.spl-two-col-title {
    position: sticky;
    top: 145px;
    padding: 36px;
    border-radius: 28px;
    border: 1px solid rgba(203,183,155,.35);
    background:
        radial-gradient(circle at 0 0, rgba(203,183,155,.16), transparent 38%),
        linear-gradient(145deg, rgba(25,34,56,.78), rgba(12,17,30,.96));
}

.spl-two-col-title h2 {
    margin-top: 22px;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 44px;
    line-height: 1.25;
}

.spl-two-col-title p {
    margin-top: 18px;
    color: #abaeb3;
    font-size: 20px;
    line-height: 1.55;
}

.spl-two-col-title .spl-main-btn {
    margin-top: 30px;
}

.spl-when-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.spl-when-list div {
    padding: 26px;
    border-radius: 22px;
    border: 1px solid rgba(21,75,97,.82);
    background: rgba(25,34,56,.56);
}

.spl-when-list b {
    display: block;
    color: #02a9c7;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
    font-size: 22px;
    line-height: 1.3;
}

.spl-when-list span {
    display: block;
    margin-top: 10px;
    color: #d8d9df;
    font-size: 17px;
    line-height: 1.55;
}

/* =========================
   SEO CONTENT AS LANDING ARTICLE
========================= */

.SPL-Article {
    color: #fff;
}

.SPL-Article .container {
    width: 1200px;
    max-width: 100%;
}

.spl-content-head {
    max-width: 880px;
    margin: 0 auto 44px;
    text-align: center;
}

.spl-article-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.spl-article-side {
    position: sticky;
    top: 125px;
}

.spl-article-side-box {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(21,75,97,.82);
    background:
        radial-gradient(circle at 0 0, rgba(2,169,199,.12), transparent 38%),
        linear-gradient(145deg, rgba(25,34,56,.78), rgba(12,17,30,.96));
}

.spl-article-side-box > span {
    display: block;
    color: #cbb79b;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.spl-toc {
    display: grid;
    gap: 8px;
}

.spl-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(21,75,97,.68);
    color: #d8d9df;
    font-size: 15px;
    line-height: 1.35;
    transition: .25s ease-in-out;
}

.spl-toc a:hover {
    color: #02a9c7;
}

.spl-article-side-box .spl-main-btn {
    width: 100%;
    margin-top: 24px;
    padding: 0 20px;
}

.spl-article-content {
    min-width: 0;
}

.spl-article-main-title {
    margin: 0 0 24px;
    padding: 30px 34px;
    border-radius: 24px;
    border: 1px solid rgba(203,183,155,.34);
    background:
        radial-gradient(circle at 0 0, rgba(203,183,155,.12), transparent 38%),
        linear-gradient(145deg, rgba(25,34,56,.82), rgba(12,17,30,.98));
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 38px;
    line-height: 1.3;
}

.spl-article-card {
    margin-top: 18px;
    padding: 30px 34px;
    border-radius: 24px;
    border: 1px solid rgba(21,75,97,.78);
    background:
        linear-gradient(145deg, rgba(25,34,56,.72), rgba(12,17,30,.96));
}

.spl-article-card:nth-of-type(2n) {
    background:
        radial-gradient(circle at 100% 0, rgba(2,169,199,.10), transparent 35%),
        linear-gradient(145deg, rgba(25,34,56,.76), rgba(12,17,30,.96));
}

.spl-article-card h3 {
    position: relative;
    margin: 0 0 16px;
    padding-right: 18px;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 28px;
    line-height: 1.32;
}

.spl-article-card h3:before {
    content: "";
    position: absolute;
    top: .55em;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #02a9c7;
    box-shadow: 0 0 0 5px rgba(2,169,199,.13);
}

.spl-article-card p {
    margin: 0 0 14px;
    color: #d8d9df;
    font-size: 18px;
    line-height: 1.72;
}

.spl-article-card p:last-child {
    margin-bottom: 0;
}

.spl-article-card ul,
.spl-article-card ol {
    display: grid;
    gap: 9px;
    margin: 18px 0 20px;
    color: #d8d9df;
    font-size: 18px;
    line-height: 1.6;
}

.spl-article-card li {
    position: relative;
    padding-right: 20px;
}

.spl-article-card li:before {
    content: "";
    position: absolute;
    top: .72em;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbb79b;
}

.spl-article-card table {
    width: 100%;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(21,75,97,.82);
    color: #d8d9df;
    font-size: 17px;
}

.spl-article-card th {
    background: rgba(2,169,199,.15);
    color: #fff;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
}

.spl-article-card th,
.spl-article-card td {
    padding: 14px;
    border-bottom: 1px solid rgba(21,75,97,.65);
}

.spl-article-card a {
    color: #02a9c7;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.spl-article-card strong,
.spl-article-card b {
    color: #fff;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
}

/* =========================
   PROCESS
========================= */

.spl-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.spl-process-grid article {
    min-height: 255px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(21,75,97,.82);
    background: linear-gradient(145deg, rgba(25,34,56,.76), rgba(12,17,30,.96));
}

/* =========================
   CTA
========================= */

.spl-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 48px;
    border-radius: 30px;
    border: 1px solid rgba(203,183,155,.38);
    background:
        radial-gradient(circle at 50% 0, rgba(2,169,199,.17), transparent 42%),
        linear-gradient(135deg, rgba(25,34,56,.86), rgba(12,17,30,.98));
}

.spl-cta-box .spl-eyebrow {
    margin-right: 0;
}

.spl-cta-box h2,
.spl-cta-box p {
    margin-right: 0;
    margin-left: 0;
    text-align: right;
}

/* =========================
   RELATED
========================= */

.spl-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.spl-related-card {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(21,75,97,.82);
    background:
        radial-gradient(circle at 0 0, rgba(2,169,199,.12), transparent 36%),
        linear-gradient(145deg, rgba(25,34,56,.78), rgba(12,17,30,.96));
    transition: .25s ease-in-out;
}

.spl-related-card > span {
    color: #cbb79b;
    font-size: 16px;
}

.spl-related-card h3 {
    margin-top: 16px;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 26px;
    line-height: 1.28;
}

.spl-related-card p {
    margin-top: 12px;
    color: #abaeb3;
    font-size: 17px;
    line-height: 1.55;
}

.spl-related-card b {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
    color: #02a9c7;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif;
    font-size: 18px;
}

.spl-related-card svg {
    width: 26px;
    height: 26px;
    color: #fff;
    transform: rotate(180deg);
}

.spl-related-card svg circle {
    fill: #02a9c7;
}

.spl-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(2,169,199,.95);
}

/* =========================
   CLEAN FAQ, ONLY PLUS
========================= */

.spl-faq-clean {
    color: #fff;
}

.spl-faq-clean .container {
    width: 960px;
    max-width: calc(100% - 30px);
}

.spl-faq-clean .toggleBlock {
    margin-top: 34px;
    border-top: 1px solid rgba(21,75,97,.75);
}

.spl-faq-clean .navt {
    border-bottom: 1px solid rgba(21,75,97,.75);
}

.spl-faq-clean .toggle {
    position: relative;
    cursor: pointer;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 16px 0 16px 48px !important;
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
}

.spl-faq-clean .toggle:before {
    content: "+";
    position: absolute;
    left: 0;
    top: 16px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(2,169,199,.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Segoe UI Bold', 'Segoe UI', sans-serif;
    font-size: 22px;
    line-height: 1;
}

.spl-faq-clean .navt.is-open .toggle:before {
    content: "−";
    color: #02a9c7;
    border-color: #02a9c7;
}

.spl-faq-clean .toggle:after {
    display: none !important;
}

.spl-faq-clean .toggle svg,
.spl-faq-clean .toggle .title svg,
.spl-faq-clean .toggle .answer svg,
.spl-faq-clean .toggle img {
    display: none !important;
}

.spl-faq-clean .toggle h3,
.spl-faq-clean .toggle h3 span,
.spl-faq-clean .toggle .answer,
.spl-faq-clean .toggle .answer span,
.spl-faq-clean .toggle .title,
.spl-faq-clean .toggle .title span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    font-family: 'Segoe UI SemiBold', 'Segoe UI', sans-serif !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
    text-align: right !important;
}

.spl-faq-clean .navt.is-open .toggle {
    color: #02a9c7 !important;
}

.spl-faq-clean .content {
    display: none;
    max-width: 760px;
    padding: 0 0 18px 48px !important;
    color: #abaeb3 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    overflow: visible !important;
}

.spl-faq-clean .content span,
.spl-faq-clean .content p {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

/* =========================
   ANCHORS
========================= */

#spl-benefits,
#spl-when,
#spl-content,
#spl-process,
#spl-related,
#spl-faq {
    scroll-margin-top: 120px;
}

/* =========================
   RESPONSIVE
========================= */

@media only screen and (min-width: 1024px) and (max-width: 1240px) {
    .spl-hero {
        padding-top: 155px;
    }

    .spl-hero-grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 45px;
    }

    .spl-title {
        font-size: 56px;
    }

    .spl-hero-text {
        font-size: 21px;
    }

    .spl-benefit-grid,
    .spl-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spl-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .spl-hero {
        padding-top: 135px;
    }

    .spl-hero-grid,
    .spl-two-col,
    .spl-cta-box {
        grid-template-columns: 1fr;
    }

    .spl-hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .spl-hero-points,
    .spl-benefit-grid,
    .spl-when-list,
    .spl-process-grid,
    .spl-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spl-two-col-title {
        position: relative;
        top: auto;
    }

    .spl-title {
        font-size: 50px;
    }

    .spl-section-head h2,
    .spl-content-head h2,
    .spl-cta-box h2 {
        font-size: 42px;
    }

    .spl-article-layout {
        grid-template-columns: 1fr;
    }

    .spl-article-side {
        position: relative;
        top: auto;
        order: -1;
    }

    .spl-toc {
        max-height: 230px;
        overflow: auto;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .spl-hero {
        padding: 92px 0 40px;
    }

    .spl-hero-grid,
    .spl-two-col,
    .spl-cta-box,
    .spl-article-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .spl-crumbs {
        margin-bottom: 18px;
    }

    .spl-title {
        margin-top: 18px;
        font-size: 38px;
    }

    .spl-title:after {
        width: 70px;
        margin-top: 18px;
    }

    .spl-hero-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .spl-hero-actions {
        margin-top: 28px;
    }

    .spl-main-btn,
    .spl-secondary-btn {
        width: 100%;
        padding: 0 20px;
    }

    .spl-hero-points,
    .spl-benefit-grid,
    .spl-when-list,
    .spl-process-grid,
    .spl-related-grid {
        grid-template-columns: 1fr;
    }

    .spl-hero-points {
        margin-top: 30px;
    }

    .spl-hero-visual:before {
        display: none;
    }

    .spl-hero-image {
        border-radius: 22px;
    }

    .spl-hero-image img {
        padding: 22px;
    }

    .spl-nav-section {
        top: 54px;
        overflow: hidden;
    }

    .spl-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .spl-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .spl-section-head {
        text-align: right;
        margin-bottom: 28px;
    }

    .spl-section-head .spl-eyebrow,
    .spl-content-head .spl-eyebrow {
        margin-right: 0;
        margin-left: auto;
    }

    .spl-section-head h2,
    .spl-content-head h2,
    .spl-cta-box h2 {
        font-size: 32px;
    }

    .spl-section-head p,
    .spl-content-head p,
    .spl-cta-box p {
        font-size: 17px;
    }

    .spl-card,
    .spl-two-col-title,
    .spl-when-list div,
    .spl-process-grid article,
    .spl-related-card,
    .spl-cta-box,
    .spl-article-side-box {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .spl-card {
        min-height: auto;
    }

    .spl-two-col-title,
    .spl-article-side {
        position: relative;
        top: auto;
    }

    .spl-two-col-title h2 {
        font-size: 31px;
    }

    .spl-two-col-title p {
        font-size: 17px;
    }

    .spl-toc {
        max-height: 230px;
        overflow: auto;
    }

    .spl-article-main-title {
        padding: 22px 20px;
        border-radius: 20px;
        font-size: 28px;
    }

    .spl-article-card {
        margin-top: 14px;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .spl-article-card h3 {
        font-size: 23px;
        line-height: 1.35;
    }

    .spl-article-card p,
    .spl-article-card ul,
    .spl-article-card ol {
        font-size: 16px;
        line-height: 1.7;
    }

    .spl-article-card table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 15px;
    }

    .spl-faq-clean .toggle {
        min-height: 56px;
        padding: 14px 0 14px 42px !important;
    }

    .spl-faq-clean .toggle:before {
        top: 13px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .spl-faq-clean .toggle h3,
    .spl-faq-clean .toggle h3 span,
    .spl-faq-clean .toggle .answer,
    .spl-faq-clean .toggle .answer span,
    .spl-faq-clean .toggle .title,
    .spl-faq-clean .toggle .title span {
        font-size: 17px !important;
        line-height: 1.38 !important;
    }

    .spl-faq-clean .content,
    .spl-faq-clean .content span,
    .spl-faq-clean .content p {
        padding-left: 42px !important;
        font-size: 15px !important;
    }
}