/* =====================
   GOOGLE FONTS IMPORT
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');


/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =====================
   ADVERTORIAL BAR
   ===================== */
.advertorial-bar {
    background-color: #3b3b3b;
    color: #9e9d9d;
    text-align: center;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 0;
}


/* =====================
   LOGO
   ===================== */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
}

.logo-wrapper img {
    height: 35px;
    width: auto;
}


/* =====================
   MAIN LAYOUT
   ===================== */
.main-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 16px;
}


/* =====================
   LEFT CONTENT
   ===================== */
.left-content {
    flex: 2;
    min-width: 0;
}

.left-content > img {
    width: 100%;
    height: auto;
    display: block;
}


/* =====================
   HEADLINE
   ===================== */
.main-headline {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}


/* =====================
   ARTICLE DATE / SUBHEADLINE
   ===================== */
.article-date {
    color: #555;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
}


/* =====================
   WARNING BANNER
   ===================== */
.warning-banner {
    background: #cfe0ec;
    padding: 15px;
    font-size: 15px;
    width: 100%;
}


/* =====================
   ARTICLE BODY
   ===================== */
.article-body {
    margin-top: 40px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-body img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: block;
}


/* =====================
   ARTICLE EXTRA
   ===================== */
.article-extra p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.article-extra-link {
    color: blue;
    text-decoration: underline;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.2s ease;
}

.article-extra-link:hover {
    color: #333333;
}

.article-extra-large p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.6;
}


/* =====================
   COMPARISON TABLE
   ===================== */
.compare-table-wrap {
    overflow-x: auto;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0;
}

.compare-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}

.compare-table-wrap thead tr {
    background: #1a1a2e;
    color: #fff;
}

.compare-table-wrap thead th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.compare-table-wrap thead th:nth-child(3) {
    color: #7dd3c8;
}

.compare-table-wrap tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.compare-table-wrap tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.compare-table-wrap tbody tr:nth-child(even) {
    background: #ffffff;
}

.compare-table-wrap td {
    padding: 12px 10px;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.5;
}

.compare-table-wrap td:first-child {
    font-weight: 600;
    color: #6b7280;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table-wrap td:nth-child(3) {
    background: rgba(125, 211, 200, 0.07);
}


/* =====================
   CTA BUTTON
   ===================== */
.cta-wrap {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: white;
    padding: 20px 70px;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.cta-btn:hover {
    background-color: #333333;
}

.cta-btn .arrow {
    margin-left: 12px;
    font-size: 24px;
    line-height: 1.1;
}


/* =====================
   UPDATE BOX
   ===================== */
.update-box {
    background-color: #fdf8d9;
    font-family: 'Montserrat', sans-serif;
    max-width: 900px;
    margin: 20px auto 0;
    border-top: 10px solid #a3c9e2;
}

.update-box-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.update-text {
    flex: 2;
    color: #333;
    line-height: 1.5;
    font-size: 18px;
}

.update-text p {
    margin-bottom: 10px;
}

.update-text p:last-child {
    margin-bottom: 0;
}

.update-image {
    flex: 1;
    text-align: center;
}

.update-image img {
    width: 100%;
    height: auto;
}


/* =====================
   REVIEW CARDS
   ===================== */
.review-card {
    background-color: #e9f5ff;
    border: 1px solid #c2e0ff;
    border-radius: 20px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.6;
    font-size: 18px;
    max-width: 950px;
    margin: 20px auto;
}


/* =====================
   STICKY SIDEBAR
   — Compact so full sidebar visible at 100% zoom without scroll
   ===================== */
.sticky-sidebar {
    width: 25%;
    height: fit-content;
    max-width: 300px;
    background: #f7f7f7;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    position: sticky;
    top: 10px;
    align-self: flex-start;
}

.sidebar-headline {
    font-size: 17px;
    font-weight: 700;
    padding: 6px 8px;
    line-height: 1.4;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.sidebar-image-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.sidebar-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    line-height: 1.3;
    gap: 8px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.sidebar-cta:hover {
    background-color: #333333;
}

.cta-arrow {
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
}


/* =====================
   SIDEBAR REVIEWS
   ===================== */
.sidebar-reviews {
    font-family: 'Montserrat', sans-serif;
}

.reviews-title {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin-bottom: 8px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.reviews-score {
    font-size: 13px;
    color: #444444;
    font-weight: 500;
    white-space: nowrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #e0e0e0;
}

.star.filled {
    color: #f5a623;
}

.star.half {
    color: #f5a623;
    opacity: 0.5;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 6px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-label {
    font-size: 12px;
    font-weight: 700;
    color: #2a7a4b;
    width: 42px;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 12px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
    min-width: 4px;
}

.rating-percent {
    font-size: 12px;
    font-weight: 700;
    color: #2a7a4b;
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}


/* =====================
   DISCLAIMER
   ===================== */
.disclaimer {
    font-family: 'Montserrat', sans-serif;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.disclaimer p {
    margin-bottom: 25px;
}

.disclaimer p:last-of-type {
    margin-bottom: 10px;
}

.disclaimer a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}


/* =====================
   FOOTER
   ===================== */
.footer-links {
    width: 100%;
    background-color: #d8e4f1;
    margin-top: 10px;
    padding: 30px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-links .copyright {
    white-space: nowrap;
    color: #8a8989;
    font-size: 18px;
}

.footer-links a {
    color: #000000;
    text-decoration: underline;
    white-space: nowrap;
}


/* =====================
   INNER PAGES (contact, terms, privacy)
   ===================== */
.inner-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px 60px;
    font-family: 'Montserrat', sans-serif;
}

.inner-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
}

.inner-page h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: #222;
}

.inner-page p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

.inner-page ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.inner-page ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
}

.inner-page a {
    color: #0000cc;
}

.contact-lede {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.contact-trust-strip {
    background: #f0f7ff;
    border-left: 4px solid #a3c9e2;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 20px 0 24px;
    border-radius: 0 6px 6px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    outline: none;
    color: #222;
    background: #fff;
    appearance: auto;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #a3c9e2;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.topic-hint {
    font-size: 13px;
    color: #2a7a4b;
    font-style: italic;
    min-height: 18px;
    margin: 0;
}

.form-footer-note {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.contact-form button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: #000;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: #333333;
}

.form-confirmation {
    font-size: 15px;
    font-weight: 700;
    color: #2a7a4b;
    padding: 14px 16px;
    background: #f0faf4;
    border: 1px solid #b6dfc8;
    border-radius: 6px;
}

.contact-secondary {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.contact-secondary p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}


/* ==============================================
   MEDIA QUERIES
   ============================================== */


/* =====================
   TABLET — max 900px
   ===================== */
@media (max-width: 900px) {

    .main-wrapper {
        flex-direction: column;
    }

    .sticky-sidebar {
        position: static;
        display: none;
        width: 100%;
        max-width: 100%;
    }

    .main-headline {
        font-size: 24px;
    }

    .cta-btn {
        padding: 16px 40px;
        font-size: 22px;
    }

    .update-box-inner {
        flex-direction: column;
    }

    .update-image {
        width: 60%;
        margin: 0 auto;
    }

    .sidebar-headline {
        font-size: 22px;
    }

    .sidebar-cta {
        font-size: 20px;
        padding: 16px;
    }

    .reviews-title {
        font-size: 18px;
    }

    .reviews-score {
        font-size: 14px;
    }

    .star {
        font-size: 20px;
    }
}


/* =====================
   MOBILE — max 600px
   ===================== */
@media (max-width: 600px) {

    .advertorial-bar {
        font-size: 14px;
    }

    .main-wrapper {
        margin: 12px auto;
        gap: 12px;
        padding: 0 12px;
    }

    .main-headline {
        font-size: 17px;
        line-height: 1.3;
    }

    .article-date {
        font-size: 14px;
    }

    .warning-banner {
        font-size: 13px;
    }

    .article-body p,
    .article-extra p,
    .update-text,
    .review-card {
        font-size: 15px;
    }

    .article-extra-large p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .review-card {
        font-size: 15px;
        padding: 15px;
    }

    .update-image {
        width: 80%;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 50px;
    }

    .footer-links .copyright {
        font-size: 14px;
    }

    .disclaimer {
        font-size: 12px;
        padding: 0 14px;
    }

    .sticky-sidebar {
        padding: 16px 14px;
    }

    .sidebar-headline {
        font-size: 20px;
    }

    .sidebar-cta {
        font-size: 18px;
        padding: 14px;
    }

    .rating-label,
    .rating-percent {
        font-size: 12px;
    }

    /* Table — card layout on mobile */
    .compare-table-wrap thead {
        display: none;
    }

    .compare-table-wrap table,
    .compare-table-wrap tbody,
    .compare-table-wrap tr,
    .compare-table-wrap td {
        display: block;
        width: 100%;
    }

    .compare-table-wrap tbody tr {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 14px;
        padding: 12px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    .compare-table-wrap tbody tr:nth-child(odd) {
        background: #ffffff;
    }

    .compare-table-wrap td {
        padding: 8px 4px;
        font-size: 13px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .compare-table-wrap td:last-child {
        border-bottom: none;
    }

    .compare-table-wrap td:first-child {
        background: #1a1a2e;
        color: #7dd3c8;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 6px 8px;
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .compare-table-wrap td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
    }

    .compare-table-wrap td:first-child::before {
        display: none;
    }

    .compare-table-wrap td:nth-child(3) {
        background: rgba(125, 211, 200, 0.1);
        border-radius: 6px;
        padding: 8px;
    }
}


/* =====================
   TASK C — NEUROLOGIST ADVERTORIAL
   ===================== */

.article-hero-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.main-headline-c {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
}

.main-headline-sub {
    font-size: 26px;
    font-weight: 700;
    color: #c0392b;
    line-height: 1.3;
    margin-bottom: 20px;
}

.lede-block {
    padding: 16px 20px;
    margin: 20px 0;
    background: #fafafa;
}

.lede-block p {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #222;
    margin: 0;
}

.lede-block strong {
    color: #c0392b;
    font-style: normal;
}

.article-byline {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 14px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 20px 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.byline-avatar {
    display: inline-block;
    width: 48px;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ddd;
}

.byline-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.article-byline strong {
    font-weight: 800;
    color: #111;
}

.article-byline span {
    font-style: italic;
    color: #666;
}

.section-divider {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 36px 0 20px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: #ddd;
    margin: 8px 0;
}

.article-body-c p {
    font-size: 18px;
    line-height: 1.75;
    color: #222;
    margin-bottom: 18px;
}

.article-body-c p strong {
    color: #111;
}

.article-body-c h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 28px 0 12px;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
    font-style: italic;
    margin: 20px 0;
    line-height: 1.5;
}

.image-caption {
    font-size: 13px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 6px 0 20px;
    line-height: 1.5;
}

.testimonial-block {
    background: #fdf9f9;
    border-left: 4px solid #c0392b;
    padding: 18px 22px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.testimonial-block p {
    font-size: 16px;
    line-height: 1.75;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-attribution {
    font-size: 13px;
    font-weight: 700;
    color: #c0392b;
    font-style: normal;
}

.summary-statement {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 30px 0;
    line-height: 1.4;
}

/* Task C comparison table — IH column highlighted */
.compare-table-c {
    overflow-x: auto;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0;
}

.compare-table-c table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.compare-table-c thead tr {
    background: #1a1a2e;
    color: #fff;
}

.compare-table-c thead th {
    padding: 10px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.compare-table-c thead th:first-child {
    text-align: left;
    width: 18%;
}

.compare-table-c thead th:nth-child(2) {
    background: #e87722;
    color: #fff;
    font-size: 13px;
}

.compare-table-c tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.compare-table-c tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.compare-table-c tbody tr:nth-child(even) {
    background: #fff;
}

.compare-table-c td {
    padding: 10px 8px;
    vertical-align: top;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.compare-table-c td:first-child {
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.compare-table-c td:nth-child(2) {
    background: rgba(232, 119, 34, 0.08);
    font-weight: 700;
    color: #e87722;
}

.compare-table-c tfoot td {
    font-size: 11px;
    color: #999;
    font-style: italic;
    padding: 8px;
    text-align: left;
    border: none;
    background: #fff;
}

.money-back-box {
    border: 2px solid #c0392b;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 30px 0;
    background: #fff9f9;
}

.money-back-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.money-back-box strong {
    color: #c0392b;
}

.closing-statement {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 16px;
}

.one-packet {
    font-size: 28px;
    font-weight: 800;
    color: #c0392b;
    text-align: center;
    margin: 24px 0 10px;
}

.cta-btn-red {
    display: block;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 18px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    margin: 10px 0 6px;
    transition: background-color 0.2s ease;
    line-height: 1.3;
}

.cta-btn-red:hover {
    background-color: hsl(0, 0%, 23%);
}

.cta-sub-text {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #888;
    margin-bottom: 24px;
}

.inline-disclaimer {
    font-size: 12px;
    color: #999;
    font-style: italic;
    line-height: 1.6;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Task C mobile */
@media (max-width: 600px) {
    .main-headline-c {
        font-size: 24px;
    }
    .main-headline-sub {
        font-size: 18px;
    }
    .lede-block p {
        font-size: 15px;
    }
    .article-body-c p {
        font-size: 15px;
    }
    .summary-statement {
        font-size: 18px;
    }
    .one-packet {
        font-size: 22px;
    }
    .cta-btn-red {
        font-size: 17px;
        padding: 16px 20px;
    }
    .compare-table-c thead {
        display: none;
    }
    .compare-table-c table,
    .compare-table-c tbody,
    .compare-table-c tr,
    .compare-table-c td {
        display: block;
        width: 100%;
    }
    .compare-table-c tbody tr {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-bottom: 12px;
        padding: 10px;
        background: #fff;
    }
    .compare-table-c td {
        text-align: left;
        padding: 6px 4px;
        border-bottom: 1px solid #f0f0f0;
    }
    .compare-table-c td:last-child {
        border-bottom: none;
    }
    .compare-table-c td:first-child {
        background: #1a1a2e;
        color: #e87722;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 6px 8px;
        border-radius: 4px;
        margin-bottom: 6px;
    }
    .compare-table-c td:nth-child(2) {
        background: rgba(232, 119, 34, 0.08);
    }
}
