:root {
    --color-start-plus: #7ef0e4;
    --color-youth-plus: #37daf8;
    --color-elite-plus: #ac90ea;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-primary: #373e44;
    --color-text-secondary: #333333;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #495057;
    --color-gray-light: #f5f5f7;
    --color-gray-lighter: #f8f9fa;
    --color-gray-border: #e5e7eb;
    --color-gray-border-alt: #dee2e6;
    --color-bg-table: #f9fafb;
    --color-bg-start: #127171;
    --color-bg-youth: #0000fc;
    --color-bg-elite: #4f11b4;
    --color-teal: #057171;
    --color-blue: #0600fd;
    --color-purple: #4617b4;
    --color-purple-active: #6610f2;
}


html, body {
  font-kerning: none;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 0, "liga" 0, "clig" 0;
}

@font-face {
    font-family: 'Loos Extrawide';
    src: url('https://static-colinstr.mncdn.com/Themes/Branch/Content/fonts/Loos_ExtraWide_Medium.otf') format('opentype');
    font-weight: 500;
    font-stretch: extra-expanded;
    font-style: normal;
}


@font-face {
    font-family: 'Loos Extrawide';
    src: url('https://static-colinstr.mncdn.com/Themes/Branch/Content/fonts/Loos_ExtraWide_Black.otf') format('opentype');
    font-weight: 900;
    font-stretch: extra-expanded;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms';
    src: url('https://static-colinstr.mncdn.com/Themes/Branch/Content/fonts/TTNorms-Medium.otf') format('opentype');
    font-weight: 500;
    font-stretch: ultra-expanded;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms';
    src: url('https://static-colinstr.mncdn.com/Themes/Branch/Content/fonts/TTNorms-Black.otf') format('opentype');
    font-weight: 900;
    font-stretch: ultra-expanded;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms';
    src: url('https://static-colinstr.mncdn.com/Themes/Branch/Content/fonts/TTNorms-Bold.otf') format('opentype');
    font-weight: 700;
    font-stretch: ultra-expanded;
    font-style: normal;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.topic-content, .topic-title {
    font-family: 'Loos', Arial, sans-serif;
    color: var(--color-text-primary);
    overflow-x: hidden;
}


body {
    font-family: 'Loos', Arial, sans-serif;
    color: var(--color-text-primary);
    overflow-x: hidden;
}

.topic-content .container,
.container {
    max-width: 1440px;
}


@media (min-width: 1200px) {
    .container {
        width: auto;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1560px;
    }
}

.topic-content .hero-section,
.hero-section {
    padding: 0;
    margin: 0;
}

.topic-content .title-section,
.title-section {
    padding-top: 30px;
}

.topic-content .hero-content,
.hero-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.topic-content .hero-image,
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}



.topic-content .hero-overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.topic-content .hero-title,
.hero-title {
    color: var(--color-white);
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.topic-content .hero-subtitle,
.hero-subtitle {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.topic-content .btn-hero,
.btn-hero {
    font-family: 'Loos Wide', sans-serif;
    background-color: #e90220;
    color: var(--color-white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(233, 2, 32, 0.3);
}

    .topic-content .btn-hero:hover,
    .btn-hero:hover {
        background-color: #c82222;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 2, 32, 0.4);
        text-decoration: none;
    }

@media only screen and (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        min-height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .title-section {
        padding: 30px 10px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-image {
        min-height: auto !important;
    }

    .topic-content .section-title, .section-title {
        font-size: 20px !important;
    }

    .hero-overlay {
        padding: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-image {
        min-height: 300px;
    }
}

.topic-content .intro-copy-section,
.intro-copy-section {
    padding: 70px 0 90px;
}

.topic-content .intro-copy-content,
.intro-copy-content {
    text-align: center;
    padding: 0 15px 60px 15px;
    background-color: var(--color-gray-light);
}

.topic-content .loyalty-cards-image,
.loyalty-cards-image {
    margin-bottom: 40px;
    width: 100%;
}

    .topic-content .loyalty-cards-image img,
    .loyalty-cards-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }

.topic-content .intro-main-title,
.intro-main-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 62px;
    font-weight: 900;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.topic-content .intro-description,
.intro-description {
    font-family: 'TT Norms';
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center !important;
}

    .topic-content .intro-description strong,
    .intro-description strong {
        font-weight: 600;
        color: var(--color-black);
    }

.topic-content .btn-intro-cta,
.btn-intro-cta {
    font-family: 'Loos Extrawide', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 10px 25px !important;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .topic-content .btn-intro-cta:hover,
    .btn-intro-cta:hover {
        background-color: #333333;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        text-decoration: none;
    }

.topic-content .slider-section,
.slider-section {
}

    .topic-content .slider-section .carousel,
    .slider-section .carousel {
        position: relative;
    }

    .topic-content .slider-section .carousel-item img,
    .slider-section .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

.topic-content .slider-dots,
.slider-dots {
    z-index: 1;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    margin: 0;
}

    .topic-content .slider-dots li,
    .slider-dots li {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #d7d7d7;
        opacity: 0.8;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        padding: 0;
        display: inline-block;
    }

        .topic-content .slider-dots li.active,
        .topic-content .slider-dots li:hover,
        .slider-dots li.active,
        .slider-dots li:hover {
            background: #26c3d6;
            opacity: 1;
        }

@media only screen and (max-width: 767px) {
    .slider-section {
        padding: 50px 0 70px;
    }

    .slider-dots {
        bottom: -26px;
        gap: 10px;
    }

        .slider-dots li {
            width: 10px;
            height: 10px;
        }
}

.topic-content .benefits-section,
.benefits-section {
    padding: 100px 0 90px;
    background: var(--color-white);
}

.topic-content .benefits-row,
.benefits-row {
    align-items: stretch;
}

.topic-content .benefits-title,
.benefits-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 45px;
    letter-spacing: -0.5px;
    font-size: 44px;
}

.topic-content .benefit-card,
.benefit-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topic-content .benefit-image img,
.benefit-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.topic-content .benefit-body,
.benefit-body {
    padding: 26px 24px 30px;
    color: var(--color-white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.topic-content .benefit-heading,
.benefit-heading {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
}

.topic-content .benefit-text,
.benefit-text {
    font-size: 19px;
    font-weight: 500;
    font-family: 'Loos Extrawide';
    text-align: center;
}

.topic-content .benefit-card-teal .benefit-body,
.benefit-card-teal .benefit-body {
    background: var(--color-teal);
}

.topic-content .benefit-card-blue .benefit-body,
.benefit-card-blue .benefit-body {
    background: var(--color-blue);
}

.topic-content .benefit-card-purple .benefit-body,
.benefit-card-purple .benefit-body {
    background: var(--color-purple);
}

@media only screen and (max-width: 991px) {
    .benefits-title {
        font-size: 30px;
        margin-bottom: 20px!important;
    }

    .benefit-heading {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .benefits-section {
        padding: 50px 0 70px!important;
    }

    .benefits-title {
        font-size: 35px!important;
    }

    .benefit-card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        height: auto;
    }

    .benefit-body {
        padding: 22px 20px 26px;
        flex: 1;
    }

    .benefit-image img {
        height: 200px;
    }
}

.topic-content .membership-section,
.membership-section {
    background: var(--color-white);
}

.topic-content .light-text,
.light-text {
    font-weight: 400 !important;
}

.topic-content .membership-main-title,
.membership-main-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.topic-content .membership-package,
.membership-package {
    padding: 30px 25px;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    overflow: visible;
    min-height: 340px;
}

.topic-content .package-start,
.package-start {
    background-color: var(--color-start-plus);
    color: #0b7172;
}

.topic-content .package-youth,
.package-youth {
    background-color: var(--color-youth-plus);
    color: #0600fc;
}

.topic-content .package-elite,
.package-elite {
    background-color: var(--color-elite-plus);
    color: #4617b3;
}

.topic-content .package-content,
.package-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topic-content .package-title,
.package-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -2.5px;
}

.topic-content .package-subtitle,
.package-subtitle {
    font-family: 'TT Norms', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
}

.topic-content .package-features,
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .topic-content .package-features li,
    .package-features li {
        font-family: 'TT Norms', sans-serif;
        font-size: 21px;
        font-weight: 900;
        margin-bottom: 8px;
        line-height: 1.5;
    }

.topic-content .package-image-container,
.package-image-container {
    position: absolute;
    top: -20px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
}

.topic-content .package-card-image,
.package-card-image {
    width: 600px;
    height: auto;
    border-radius: 12px;
    max-width: 100%;
}

@media only screen and (max-width: 991px) {
    .membership-main-title {
        font-size: 30px;
    }

    .package-title {
        font-size: 28px;
    }

    .package-subtitle {
        font-size: 15px;
    }

    .package-features li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .membership-section {
        padding: 0;
    }

    .membership-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .membership-package {
        padding: 25px 20px;
    }

    .package-title {
        font-size: 24px!important;
        margin-bottom: 6px!important;
    }

    .package-subtitle {
        font-size: 13px!important;
        margin-bottom: 15px!important;
    }

    .package-features li {
        font-size: 16px!important;
        margin-bottom: 6px!important;
    }

    .package-image-container {
        position: static !important;
        padding: 15px 20px !important;
        pointer-events: auto !important;
        justify-content: flex-start !important;
    }

    .package-card-image {
        width: 200px;
    }
}

.topic-content .membership-compare-section,
.membership-compare-section {
    padding: 70px 0 90px;
    background: var(--color-white);
}

.topic-content .membership-compare-wrapper,
.membership-compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.topic-content .membership-compare-title,
.membership-compare-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--color-black);
    letter-spacing: -0.4px;
}

.topic-content .membership-compare-table,
.membership-compare-table {
    width: 100%;
    min-width: 780px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 19px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
}

    .topic-content .membership-compare-table thead th:first-child,
    .membership-compare-table thead th:first-child {
        border: 0;
        vertical-align: middle;
    }

    .topic-content .membership-compare-table thead th,
    .membership-compare-table thead th {
        vertical-align: middle;
        font-weight: 400;
    }

    .topic-content .membership-compare-table th,
    .topic-content .membership-compare-table td,
    .membership-compare-table th,
    .membership-compare-table td {
        width: 25%;
        word-break: break-word;
    }

.topic-content .brand-heading,
.brand-heading {
    font-size: 20px;
    line-height: 1.3;
    padding: 34px 18px 26px;
}

.topic-content .compare-heading-cell,
.compare-heading-cell {
    position: relative;
    padding: 90px 16px 18px;
    font-size: 18px;
    vertical-align: bottom;
}

.membership-compare-table th,
.membership-compare-table td {
    border-left: 3px solid var(--color-gray-border);
    border-bottom: 1px solid var(--color-gray-border);
    padding: 20px 20px;
    vertical-align: middle;
    line-height: 1.5;
    border-top: 0;
}

    .membership-compare-table th:first-child,
    .membership-compare-table td:first-child {
    }

.membership-compare-table tbody tr:last-child th,
.membership-compare-table tbody tr:last-child td {
}

tbody th {
    text-align: left;
    font-weight: 400;
    color: #0f172a;
}

.membership-compare-table tbody td {
}

.compare-start {
    background: var(--color-start-plus);
    color: #0f172a;
}

.compare-youth {
    background: var(--color-youth-plus);
    color: #0f172a;
}

.compare-elite {
    background: var(--color-elite-plus);
    color: #0f172a;
}

.membership-compare-table thead th.compare-start,
.membership-compare-table tbody td:nth-child(2) {
    background: var(--color-start-plus);
    color: var(--color-bg-start);
}

.membership-compare-table thead th.compare-youth,
.membership-compare-table tbody td:nth-child(3) {
    background: var(--color-youth-plus);
    color: var(--color-bg-youth);
}

.membership-compare-table thead th.compare-elite,
.membership-compare-table tbody td:nth-child(4) {
    background: var(--color-elite-plus);
    color: var(--color-bg-elite);
}

.compare-card-holder {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.compare-card-image {
    width: 150px;
    height: auto;
    transform: rotate(-10deg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}

.compare-footnote {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

@media only screen and (max-width: 991px) {
    .membership-compare-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .membership-compare-section {
        padding: 50px 0 70px!important;
    }

        .membership-compare-section .container {
            padding-left: 0;
            padding-right: 0;
            max-width: 100%;
        }

    .membership-compare-wrapper {
        padding: 0 15px;
    }

    .membership-compare-title {
        font-size: 26px;
        padding: 0 15px;
    }

    .membership-compare-table {
        min-width: 780px;
        font-size: 14px;
    }

    .compare-footnote {
        padding: 0 15px;
    }

    .compare-card-image {
        width: 130px;
    }
}

.topic-content .faq-section,
.faq-section {
    padding: 70px 0 90px;
}

.topic-content .faq-main-title,
.faq-main-title {
    font-family: 'Loos Extrawide', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--color-black);
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.topic-content .faq-nav,
.faq-nav {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

    .topic-content .faq-nav .nav-link,
    .faq-nav .nav-link {
        font-family: 'Loos Extrawide', sans-serif;
        color: #ced4da;
        font-size: 22px;
        font-weight: 900;
        padding-left: 0;
        border: none;
        border-radius: 0;
        border-left: none;
        transition: all 0.3s ease;
        text-align: left;
        background: transparent;
    }

        .topic-content .faq-nav .nav-link:hover,
        .faq-nav .nav-link:hover {
            background-color: transparent;
            color: var(--color-black);
            border-left-color: transparent;
        }

        .topic-content .faq-nav .nav-link.active,
        .faq-nav .nav-link.active {
            background-color: transparent;
            color: var(--color-purple-active);
            border-left-color: transparent;
        }

.topic-content .faq-content,
.faq-content {
}

.topic-content .faq-answer-title,
.faq-answer-title {
    font-family: 'Loos Wide', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.topic-content .section-title,
.section-title {
    font-family: 'TT Norms';
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    line-height: 1.5;
}

.topic-content .faq-answer-text,
.faq-answer-text {
    font-size: 20px;
    color: #212529;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'TT Norms';
}

@media only screen and (max-width: 991px) {
    .faq-main-title {
        font-size: 30px;
    }

    .faq-content {
        padding-top: 30px;
    }

    .faq-answer-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .faq-section {
        padding: 50px 0 70px!important;
    }

    .faq-main-title {
        font-size: 22px;
    }

    .faq-nav {
        margin-bottom: 20px;
    }

        .faq-nav .nav-link {
            font-size: 14px;
        }

    .faq-content {
        min-height: auto;
    }

    .faq-answer-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .faq-answer-text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .intro-copy-section {
        padding: 70px 0 90px;
    }

    .intro-main-title {
        font-size: 36px;
    }

    .intro-description {
    }

    .intro-cta-text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {

    .intro-copy-section {
        padding: 0 10px!important;
    }

    .intro-copy-content {
        padding: 20px 15px !important;
    }

    .intro-main-title {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }

    .intro-description {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

        .intro-description br {
            display: none;
        }

    .intro-cta-text {
        font-size: 14px;
        margin-bottom: 30px;
        margin-top: 20px;
    }

        .intro-cta-text br {
            display: none;
        }

    .btn-intro-cta {
        padding: 14px 35px;
        font-size: 13px;
        width: 100%;
        max-width: 350px;
    }

    .loyalty-cards-image {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .intro-main-title {
        font-size: 24px;
    }

    .intro-description {
        font-size: 16px;
    }

    .intro-cta-text {
        font-size: 13px;
    }

    .btn-intro-cta {
        padding: 12px 30px;
        font-size: 13px;
    }
}

.topic-content td.bbrr,
td.bbrr {
    border-bottom-right-radius: 20px;
}

.topic-content .membership-compare-table thead th:last-child,
.membership-compare-table thead th:last-child {
    border-top-right-radius: 20px;
}

.topic-content .border-left-bottom-radius,
.border-left-bottom-radius {
    border-bottom-left-radius: 20px;
}

.topic-content .border-left-top-radius,
.border-left-top-radius {
    border-top-left-radius: 20px;
}

.topic-content th.border-left-top-radius,
th.border-left-top-radius {
    border-top: 3px solid var(--color-gray-border-alt);
}

.topic-content .table td,
.topic-content .table th,
.table td,
.table th {
    border-top: 2px solid var(--color-gray-border-alt);
}

.topic-content .collectandstylelogo,
.collectandstylelogo {
    width: 190px;
    max-width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: -20px;
}

@media only screen and (max-width: 990px) {
    .topic-content img.collectandstylelogo {
        width: 90% !important;
        top: 30px !important;
    }
}

@media only screen and (min-width: 768px) {
    .collectandstylelogo {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .faq-nav .nav-link {
        position: relative;
        padding-right: 32px;
    }

        .faq-nav .nav-link::after {
            content: "+";
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: bold;
        }

        .faq-nav .nav-link.active::after {
            content: "-";
        }

        .topic-content .faq-nav .nav-link:hover,
        .faq-nav .nav-link:hover {
            color: #ced4da;
        }

        .faq-nav .nav-link.active {
            color: var(--color-purple-active)!important;
        }

    .faq-nav .nav-link {
        color: #ced4da!important;
    }
}

.membership-compare-section{
        font-family: 'TT Norms';
}