/* =========================================================
   MyWealthCare Loan Page CSS
   Elegant + Business Ready + Mobile Friendly
   File: assets/css/loan-page.css
========================================================= */

/* -----------------------------
   1. Theme Variables
----------------------------- */
:root {
    --mw-blue: #123f91;
    --mw-blue-dark: #0b2b68;
    --mw-orange: #f47b20;
    --mw-gold: #f4b23f;

    --mw-ink: #344054;
    --mw-heading: #1f2f55;
    --mw-muted: #6f7d95;

    --mw-light: #f8fbff;
    --mw-white: #ffffff;
    --mw-border: #edf1f7;

    --mw-shadow-sm: 0 8px 22px rgba(18, 63, 145, 0.055);
    --mw-shadow-md: 0 14px 34px rgba(18, 63, 145, 0.08);
    --mw-shadow-lg: 0 22px 54px rgba(18, 63, 145, 0.11);

    --mw-radius: 22px;
}

/* -----------------------------
   2. Base Wrapper
----------------------------- */
.mw-loan-page {
    font-family: "Inter", Arial, sans-serif;
    color: var(--mw-ink);
    background: var(--mw-white);
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.65;
}

.mw-loan-page *,
.mw-loan-page *::before,
.mw-loan-page *::after {
    box-sizing: border-box;
}

.mw-loan-page a {
    text-decoration: none;
}

.mw-loan-page img {
    max-width: 100%;
    display: block;
}

.mw-loan-page .container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

/* -----------------------------
   3. Buttons
----------------------------- */
.mw-btn,
.mw-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.22s ease;
}

.mw-btn {
    padding: 10px 17px;
    border-radius: 999px;
    font-size: 13px;
}

.mw-btn-primary,
.mw-apply-btn {
    background: linear-gradient(135deg, var(--mw-orange), #ff9a48);
    color: var(--mw-white);
    box-shadow: 0 10px 22px rgba(244, 123, 32, 0.20);
}

.mw-btn-primary:hover,
.mw-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(244, 123, 32, 0.26);
}

.mw-btn-secondary {
    background: var(--mw-white);
    color: var(--mw-blue);
    border: 1px solid #dfe7f5;
    box-shadow: var(--mw-shadow-sm);
}

.mw-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--mw-shadow-md);
}

.mw-apply-btn {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
}

/* -----------------------------
   4. Simple Hero Section
----------------------------- */
.mw-loan-hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 56px;
    background:
        radial-gradient(circle at 14% 15%, rgba(244, 123, 32, 0.075), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(18, 63, 145, 0.10), transparent 30%),
        linear-gradient(180deg, #fbfdff, #ffffff);
}

.mw-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 63, 145, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 63, 145, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent);
}

.mw-simple-hero {
    text-align: center;
}

.mw-simple-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.mw-simple-hero-content h1 {
    max-width: 820px;
    margin: 0 auto 14px;
    color: var(--mw-heading);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 760;
    line-height: 1.15;
    letter-spacing: -0.75px;
}

.mw-simple-hero-content h1 strong {
    display: block;
    font-weight: 820;
    background: linear-gradient(90deg, var(--mw-orange), #ee9b45);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mw-simple-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--mw-muted);
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 400;
}

/* Optional badge, if used */
.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid var(--mw-border);
    border-radius: 999px;
    background: var(--mw-white);
    color: var(--mw-blue);
    box-shadow: var(--mw-shadow-sm);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.mw-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mw-orange);
    box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.10);
}

/* Old two-column hero support */
.mw-loan-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 42px;
    align-items: center;
}

.mw-hero-content h1 {
    margin: 0 0 18px;
    color: var(--mw-heading);
    font-size: clamp(30px, 3.55vw, 46px);
    font-weight: 760;
    line-height: 1.13;
    letter-spacing: -0.9px;
}

.mw-hero-content h1 strong {
    display: block;
    font-weight: 820;
    background: linear-gradient(90deg, var(--mw-orange), #ee9b45);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mw-hero-content p {
    max-width: 620px;
    margin: 0 0 26px;
    color: var(--mw-muted);
    font-size: 14.5px;
    line-height: 1.75;
}

.mw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

/* -----------------------------
   5. Trust Cards / Old Hero Card Support
----------------------------- */
.mw-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 610px;
}

.mw-trust-card {
    padding: 14px;
    border: 1px solid var(--mw-border);
    border-radius: 18px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
}

.mw-trust-card b {
    display: block;
    color: var(--mw-blue);
    font-size: 19px;
    font-weight: 760;
    line-height: 1.1;
}

.mw-trust-card span {
    color: var(--mw-muted);
    font-size: 12px;
    font-weight: 650;
}

.mw-hero-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, #123f91, #0d2f73);
    color: var(--mw-white);
    box-shadow: var(--mw-shadow-lg);
}

.mw-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
}

.mw-card-top p {
    margin: 0 0 4px;
    color: #dce7ff;
    font-size: 12px;
    font-weight: 650;
}

.mw-card-top h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 760;
    line-height: 1.15;
}

.mw-rupee-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: var(--mw-white);
    color: var(--mw-orange);
    font-size: 25px;
    font-weight: 800;
}

.mw-overview-list {
    display: grid;
    gap: 10px;
}

.mw-overview-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.105);
}

.mw-overview-item span {
    color: #dce7ff;
    font-size: 12px;
    font-weight: 650;
}

.mw-overview-item strong {
    color: #ffe0c7;
    font-size: 12.5px;
    font-weight: 760;
    text-align: right;
}

.mw-hero-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: var(--mw-white);
    color: var(--mw-ink);
}

.mw-hero-note h3 {
    margin: 0 0 6px;
    color: var(--mw-blue);
    font-size: 15px;
    font-weight: 760;
}

.mw-hero-note p {
    margin: 0;
    color: var(--mw-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

/* -----------------------------
   6. Section Titles
----------------------------- */
.mw-section {
    padding: 60px 0;
}

.mw-soft-section {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.mw-section-head {
    max-width: 740px;
    margin: 0 auto 36px;
    text-align: center;
}

.mw-eyebrow {
    color: var(--mw-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mw-light {
    color: #ffd0ab;
}

.mw-section-head h2,
.mw-why-grid h2,
.mw-bottom-cta h2 {
    margin: 8px 0 12px;
    color: var(--mw-heading);
    font-size: clamp(24px, 2.75vw, 34px);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -0.45px;
}

.mw-section-head p,
.mw-why-grid p,
.mw-bottom-cta p {
    color: var(--mw-muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

/* -----------------------------
   7. Bank Offers - Elegant Premium
----------------------------- */
.mw-bank-list,
.mw-bank-list-premium {
    display: grid;
    gap: 18px;
}

.mw-bank-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mw-border);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: var(--mw-shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mw-bank-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mw-blue), var(--mw-orange));
}

.mw-bank-card:hover {
    transform: translateY(-4px);
    border-color: #dfe7f5;
    box-shadow: var(--mw-shadow-md);
}

.mw-bank-card-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(390px, 1.4fr) auto;
    gap: 20px;
    align-items: center;
    padding: 22px;
}

.mw-bank-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.mw-rank-badge {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mw-blue), var(--mw-blue-dark));
    color: var(--mw-white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 63, 145, 0.14);
}

.mw-bank-logo-box {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 78px;
    height: 56px;
    padding: 8px;
    border: 1px solid var(--mw-border);
    border-radius: 18px;
    background: var(--mw-white);
}

.mw-bank-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mw-bank-logo-box span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: var(--mw-blue);
    color: var(--mw-white);
    font-weight: 800;
    font-size: 17px;
}

.mw-bank-title {
    min-width: 0;
}

.mw-bank-title h3 {
    margin: 0 0 4px;
    color: var(--mw-heading);
    font-size: 16px;
    font-weight: 760;
    line-height: 1.25;
}

.mw-bank-title p {
    margin: 0 0 8px;
    color: var(--mw-muted);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;
}

.mw-bank-type {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--mw-blue);
    font-size: 11px;
    font-weight: 750;
}

.mw-bank-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.mw-metric-card {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--mw-border);
    border-radius: 16px;
    background: var(--mw-white);
}

.mw-metric-card span {
    display: block;
    margin-bottom: 5px;
    color: #7a879c;
    font-size: 11px;
    font-weight: 750;
}

.mw-metric-card strong {
    display: block;
    color: var(--mw-heading);
    font-size: 12.8px;
    font-weight: 760;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.mw-rate-card {
    background: linear-gradient(180deg, #f3fff8, #ffffff);
    border-color: #d6f2e3;
}

.mw-rate-card strong {
    color: #039855;
}

.mw-bank-action {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.mw-bank-link {
    color: var(--mw-blue);
    font-size: 12px;
    font-weight: 750;
}

.mw-bank-link:hover {
    color: var(--mw-orange);
}

.mw-bank-card-extra {
    display: grid;
    gap: 12px;
    margin: 0 22px 22px;
    padding: 15px;
    border: 1px dashed #dfe6f2;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.mw-bank-card-extra p {
    margin: 0;
    color: var(--mw-muted);
    font-size: 13px;
    line-height: 1.7;
}

.mw-bank-card-extra ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mw-bank-card-extra li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--mw-blue);
    font-size: 12px;
    font-weight: 750;
}

.mw-bank-card-extra li::before {
    content: "✓";
    color: var(--mw-orange);
    font-weight: 800;
}

/* -----------------------------
   8. Benefits
----------------------------- */
.mw-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.mw-benefit-box {
    padding: 20px;
    border: 1px solid var(--mw-border);
    border-radius: 20px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
    transition: 0.24s ease;
}

.mw-benefit-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--mw-shadow-md);
}

.mw-benefit-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 13px;
    background: rgba(244, 123, 32, 0.10);
    color: var(--mw-orange);
    font-weight: 800;
}

.mw-benefit-box h3 {
    margin: 0;
    color: var(--mw-heading);
    font-size: 15px;
    font-weight: 760;
    line-height: 1.38;
}

/* -----------------------------
   9. Why Choose
----------------------------- */
.mw-why-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: center;
}

.mw-why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mw-why-card {
    padding: 20px;
    border: 1px solid var(--mw-border);
    border-radius: 20px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
}

.mw-why-card h3 {
    margin: 0 0 7px;
    color: var(--mw-blue);
    font-size: 16px;
    font-weight: 760;
}

.mw-why-card p {
    margin: 0;
    color: var(--mw-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* -----------------------------
   10. Accordion + FAQ
----------------------------- */
.mw-accordion,
.mw-faq-list {
    display: grid;
    gap: 12px;
}

.mw-accordion-item,
.mw-faq-item {
    overflow: hidden;
    border: 1px solid var(--mw-border);
    border-radius: 18px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
}

.mw-accordion-header,
.mw-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 15px 18px;
    border: 0;
    background: var(--mw-white);
    color: var(--mw-heading);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 760;
    text-align: left;
}

.mw-accordion-header:hover,
.mw-faq-question:hover {
    background: #f8fbff;
}

.mw-accordion-header span,
.mw-faq-question span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mw-blue);
    color: var(--mw-white);
    font-size: 15px;
    font-weight: 800;
}

.mw-accordion-body,
.mw-faq-answer {
    display: none;
    padding: 0 18px 18px;
    border-top: 1px solid var(--mw-border);
    color: #475467;
    font-size: 13px;
    line-height: 1.75;
}

.mw-accordion-body.active,
.mw-faq-answer.active {
    display: block;
}

.mw-accordion-body ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.mw-accordion-body li {
    margin-bottom: 6px;
}

.mw-faq-answer p {
    margin: 14px 0 0;
}

/* -----------------------------
   11. Content Guide
----------------------------- */
.mw-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.mw-content-box {
    padding: 20px;
    border: 1px solid var(--mw-border);
    border-radius: 20px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
    transition: 0.24s ease;
}

.mw-content-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--mw-shadow-md);
}

.mw-content-box h3 {
    margin: 0 0 12px;
    padding-left: 10px;
    border-left: 3px solid var(--mw-orange);
    color: var(--mw-blue);
    font-size: 16px;
    font-weight: 760;
}

.mw-content-box ul {
    margin: 0;
    padding-left: 17px;
}

.mw-content-box li {
    margin-bottom: 7px;
    color: #475467;
    font-size: 13px;
    line-height: 1.65;
}

.mw-full-content {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--mw-border);
    border-radius: 22px;
    background: var(--mw-white);
    box-shadow: var(--mw-shadow-sm);
}

.mw-full-content h3 {
    margin: 0 0 7px;
    color: var(--mw-blue);
    font-size: 16px;
    font-weight: 760;
}

.mw-full-content h3:not(:first-child) {
    margin-top: 18px;
}

.mw-full-content p {
    margin: 0;
    color: var(--mw-muted);
    font-size: 13.5px;
    line-height: 1.8;
}

/* -----------------------------
   12. Empty Card
----------------------------- */
.mw-empty-card {
    padding: 20px;
    border: 1px solid var(--mw-border);
    border-radius: 18px;
    background: var(--mw-white);
    color: var(--mw-muted);
    font-size: 13.5px;
    box-shadow: var(--mw-shadow-sm);
}

/* -----------------------------
   13. Bottom CTA
----------------------------- */
.mw-bottom-cta {
    padding: 58px 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(244, 123, 32, 0.18), transparent 30%),
        linear-gradient(135deg, #0b2b68, #123f91);
    color: var(--mw-white);
}

.mw-bottom-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mw-bottom-cta h2 {
    margin-bottom: 8px;
    color: var(--mw-white);
}

.mw-bottom-cta p {
    max-width: 700px;
    margin: 0;
    color: #dce7ff;
}

/* -----------------------------
   14. Responsive CSS
----------------------------- */
@media (max-width: 1180px) {
    .mw-bank-card-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mw-bank-action {
        justify-items: stretch;
    }

    .mw-bank-link {
        text-align: center;
    }
}

@media (max-width: 980px) {
    .mw-loan-hero-grid,
    .mw-why-grid {
        grid-template-columns: 1fr;
    }

    .mw-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mw-bottom-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mw-loan-page .container {
        width: min(100% - 32px, 1160px);
    }

    .mw-loan-hero,
    .mw-simple-hero {
        padding: 50px 0;
    }

    .mw-section {
        padding: 50px 0;
    }

    .mw-simple-hero-content h1,
    .mw-hero-content h1 {
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .mw-simple-hero-content p,
    .mw-hero-content p,
    .mw-section-head p,
    .mw-why-grid p,
    .mw-bottom-cta p {
        font-size: 13.5px;
    }

    .mw-section-head h2,
    .mw-why-grid h2,
    .mw-bottom-cta h2 {
        font-size: 24px;
        line-height: 1.22;
    }

    .mw-bank-metrics,
    .mw-trust-grid,
    .mw-why-cards {
        grid-template-columns: 1fr;
    }

    .mw-bank-profile {
        align-items: flex-start;
    }

    .mw-bank-card {
        border-radius: 22px;
    }

    .mw-bank-card-main {
        padding: 18px;
    }

    .mw-bank-card-extra {
        margin: 0 18px 18px;
    }

    .mw-benefit-box,
    .mw-content-box,
    .mw-full-content,
    .mw-why-card {
        padding: 18px;
        border-radius: 18px;
    }

    .mw-bottom-cta {
        padding: 50px 0;
    }
}

@media (max-width: 520px) {
    .mw-loan-page .container {
        width: min(100% - 24px, 1160px);
    }

    .mw-loan-hero,
    .mw-simple-hero {
        padding: 42px 0;
    }

    .mw-section {
        padding: 44px 0;
    }

    .mw-simple-hero-content h1,
    .mw-hero-content h1 {
        font-size: 27px;
    }

    .mw-section-head {
        margin-bottom: 28px;
    }

    .mw-section-head h2,
    .mw-why-grid h2,
    .mw-bottom-cta h2 {
        font-size: 22px;
    }

    .mw-btn,
    .mw-apply-btn {
        width: 100%;
    }

    .mw-hero-actions {
        flex-direction: column;
    }

    .mw-hero-card {
        padding: 18px;
        border-radius: 22px;
    }

    .mw-card-top,
    .mw-overview-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .mw-overview-item strong {
        text-align: left;
    }

    .mw-bank-profile {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
    }

    .mw-rank-badge {
        width: 36px;
        height: 36px;
        border-radius: 13px;
        font-size: 11px;
    }

    .mw-bank-logo-box {
        grid-column: 1 / -1;
        width: 100%;
        height: 72px;
    }

    .mw-bank-logo-box img {
        max-width: 150px;
    }

    .mw-bank-title h3 {
        font-size: 15px;
    }

    .mw-bank-title p {
        font-size: 12px;
    }

    .mw-metric-card {
        padding: 12px;
    }

    .mw-bank-card-extra {
        padding: 14px;
    }

    .mw-bank-card-extra ul {
        display: grid;
        gap: 7px;
    }

    .mw-accordion-header,
    .mw-faq-question {
        padding: 14px;
        font-size: 13.5px;
    }

    .mw-accordion-body,
    .mw-faq-answer {
        padding: 0 14px 14px;
        font-size: 12.8px;
    }
}
