/*
 * support.css
 * サポートページ固有スタイル
 * 共通スタイル: ../style.css（CSS変数・.container・.btn等を使用）
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700&family=Rajdhani:wght@500;600;700&display=swap');


/* -----------------------------------------------
   #container リセット（support固有）
----------------------------------------------- */
#container {
    display: block;
    width: 100%;
}



/* -----------------------------------------------
   メインコンテンツエリア
----------------------------------------------- */
.support-body {
    padding: 48px 0 64px;
    background: var(--bg-white, #fff);
}

/* -----------------------------------------------
   セクション
----------------------------------------------- */
.support-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border, #e0e4f0);
}

.support-section--last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.support-section__heading {
    margin-bottom: 24px;
}

.support-section__title {
    font-family: var(--font-serif-ja, 'Noto Serif JP', serif);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0;
    line-height: 1.4;
}

/* -----------------------------------------------
   ブロック（h2/h3 + ボタン + コンテンツ）
----------------------------------------------- */
.support-block {
    margin-bottom: 16px;
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    background: var(--bg-white, #fff);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.28s ease;
}

.support-block:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
}

.support-block:last-child {
    margin-bottom: 0;
}

.support-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light, #f8f8fc);
    border-bottom: 1px solid var(--border-light, #f0f2f8);
}

.support-block__title {
    font-family: var(--font-ja, 'Noto Sans JP', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0;
    line-height: 1.5;
}

/* ブロック内のボタン（サイズ調整） */
.support-block__btn {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 13px;
}

/* 教育・ICTブロック内コンテンツ */
.support-block--edu .support-block__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.support-block__lead {
    font-size: 15px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.8;
    margin: 0;
}

/* -----------------------------------------------
   箇条書きリスト
----------------------------------------------- */
.support-list {
    padding: 14px 20px 14px 36px;
    margin: 0;
    list-style: disc;
    color: var(--text-secondary, #4a4a6a);
    font-size: 14px;
    line-height: 1.8;
}

.support-list li + li {
    margin-top: 4px;
}

/* -----------------------------------------------
   .btn 上書き（style.cssから継承し微調整）
----------------------------------------------- */
.btn-outline {
    color: var(--brand-navy, #0d1b3e);
    border-color: var(--brand-navy, #0d1b3e);
}

.btn-outline:hover {
    background: var(--brand-navy, #0d1b3e);
    color: #fff;
}

/* -----------------------------------------------
   レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 767px) {
    .support-hero {
        padding: 40px 0 32px;
    }

    .support-body {
        padding: 32px 0 48px;
    }

    .support-block__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .support-block__btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===============================================
   詳細ページ共通スタイル（adam.html / adam_s*.html 等）
   =============================================== */

/* ---- 詳細ページ 本文エリア ---- */
.detail-body {
    padding: 56px 0 80px;
    background: var(--bg-white, #fff);
}

/* ---- コンテンツ最大幅 ---- */
.detail-body .container {
    max-width: 900px;
}

/* ---- リードテキスト（ページ冒頭説明文） ---- */
.detail-lead {
    font-size: 15px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.9;
    margin-bottom: 32px;
    padding: 24px 28px;
    background: var(--bg-light, #f8f8fc);
    border-left: 4px solid var(--brand-red, #990000);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
}

/* ---- セクション区切り ---- */
.detail-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border, #e0e4f0);
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ---- h2 見出し ---- */
.detail-h2 {
    font-family: var(--font-serif-ja, 'Noto Serif JP', serif);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red, #990000);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-h2::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 20px;
    background: var(--brand-red, #990000);
    border-radius: 3px;
    flex-shrink: 0;
}

/* ---- h3 見出し ---- */
.detail-h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 24px 0 10px;
    padding-left: 12px;
    border-left: 3px solid var(--accent-cyan, #00c8e8);
}

/* ---- 本文テキスト ---- */
.detail-text {
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.9;
    margin-bottom: 12px;
}

/* ---- 注意書きテキスト（赤系） ---- */
.detail-note {
    font-size: 13px;
    color: #c60000;
    background: #fff5f5;
    border-left: 3px solid #c60000;
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    padding: 12px 16px;
    margin: 12px 0;
    line-height: 1.8;
}

/* ---- 注意書きテキスト（グレー系） ---- */
.detail-caution {
    font-size: 13px;
    color: var(--text-light, #8888aa);
    background: var(--bg-section, #f2f4fa);
    border-left: 3px solid var(--border, #e0e4f0);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    padding: 12px 16px;
    margin: 12px 0;
    line-height: 1.8;
}

/* ---- 箇条書きリスト ---- */
.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 16px;
    padding-left: 4px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.8;
}

.detail-list li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: var(--brand-red, #990000);
    margin-top: 8px;
    flex-shrink: 0;
}

/* ネスト（sub）リスト */
.detail-list--sub {
    padding-left: 20px;
    margin-top: 4px;
    gap: 4px;
}

.detail-list--sub li::before {
    background: transparent;
    border: 2px solid var(--brand-red, #990000);
}

/* ---- インラインボタン（詳細リンク） ---- */
.detail-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--brand-red, #990000);
    color: #fff;
    border-radius: var(--radius, 8px);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    margin: 8px 0 16px;
}

.detail-inline-btn::after {
    content: '›';
    font-size: 16px;
    line-height: 1;
}

.detail-inline-btn:hover {
    background: var(--brand-red-dark, #660000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153,0,0,0.3);
}

.detail-inline-btn--outline {
    background: transparent;
    color: var(--brand-navy, #0d1b3e);
    border: 2px solid var(--brand-navy, #0d1b3e);
}

.detail-inline-btn--outline:hover {
    background: var(--brand-navy, #0d1b3e);
    color: #fff;
    box-shadow: none;
}

/* ---- ログインカード（adam.html CTA） ---- */
.detail-login-card {
    background: var(--brand-navy, #0d1b3e);
    border-radius: var(--radius-lg, 16px);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0 0;
}

.detail-login-card__text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
}

.detail-login-card__text strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

/* ---- サービスカードグリッド（adam.html サービス概要） ---- */
.detail-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.detail-service-card {
    background: var(--bg-light, #f8f8fc);
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.detail-service-card:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
    border-color: var(--brand-red, #990000);
}

.detail-service-card__label {
    font-family: var(--font-en, 'Rajdhani', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-red, #990000);
    text-transform: uppercase;
}

.detail-service-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    line-height: 1.4;
}

.detail-service-card__desc {
    font-size: 12px;
    color: var(--text-light, #8888aa);
    line-height: 1.7;
    flex: 1;
}

/* ---- 価格テーブル ---- */
.detail-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 12px 0 16px;
    border-radius: var(--radius, 8px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}

.detail-price-table thead tr {
    background: var(--brand-navy, #0d1b3e);
}

.detail-price-table thead th {
    padding: 12px 20px;
    text-align: left;
    font-family: var(--font-en, 'Rajdhani', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
}

.detail-price-table tbody tr {
    border-bottom: 1px solid var(--border-light, #f0f2f8);
    transition: background 0.2s;
}

.detail-price-table tbody tr:nth-child(even) {
    background: var(--bg-light, #f8f8fc);
}

.detail-price-table tbody tr:hover {
    background: rgba(153,0,0,0.04);
}

.detail-price-table tbody tr:last-child {
    border-bottom: none;
}

.detail-price-table tbody td {
    padding: 12px 20px;
    color: var(--text-secondary, #4a4a6a);
    vertical-align: middle;
}

.detail-price-table tbody td:first-child {
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
}

.detail-price-table tbody td:last-child {
    color: var(--brand-red, #990000);
    font-weight: 700;
}

/* ---- 受付時間インフォボックス ---- */
.detail-hours-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light, #f8f8fc);
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    padding: 20px 24px;
    margin: 12px 0;
}

.detail-hours-box__icon {
    width: 40px;
    height: 40px;
    background: var(--brand-navy, #0d1b3e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-hours-box__icon svg {
    stroke: #fff;
}

.detail-hours-box__text {
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.8;
}

.detail-hours-box__text strong {
    display: block;
    font-size: 15px;
    color: var(--brand-navy, #0d1b3e);
    font-weight: 700;
    margin-bottom: 2px;
}

/* ---- edu ページ：サービスブロック ---- */
.edu-block {
    margin-bottom: 16px;
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    background: var(--bg-white, #fff);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.28s ease;
}

.edu-block:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
}

.edu-block:last-child {
    margin-bottom: 0;
}

.edu-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light, #f8f8fc);
    border-bottom: 1px solid var(--border-light, #f0f2f8);
}

.edu-block__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0;
    line-height: 1.5;
}

.edu-block__btn {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 13px;
}

.edu-block__body {
    padding: 14px 20px;
}

.edu-block__body p {
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.8;
    margin: 0;
}

.edu-block__note {
    font-size: 13px;
    color: #c60000;
    margin-top: 8px;
    line-height: 1.7;
}

/* ---- レスポンシブ追加 ---- */
@media screen and (max-width: 767px) {
    .detail-service-grid {
        grid-template-columns: 1fr;
    }

    .detail-login-card {
        flex-direction: column;
        padding: 20px;
    }

    .detail-price-table thead th,
    .detail-price-table tbody td {
        padding: 10px 14px;
        font-size: 13px;
    }

    .edu-block__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .edu-block__btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===============================================
   FAQ ページ固有スタイル（introduction/index_i.html）
   =============================================== */

/* ---- FAQ ページ 本文エリア ---- */
.faq-body {
    padding: 48px 0 80px;
    background: var(--bg-white, #fff);
}

.faq-body .container {
    max-width: 900px;
}

/* ---- FAQリードノート ---- */
.faq-lead-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    background: var(--bg-light, #f8f8fc);
    border-left: 4px solid var(--accent-cyan, #00c8e8);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    padding: 14px 18px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.faq-lead-note::before {
    content: '※';
    color: var(--accent-cyan, #00c8e8);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- FAQセクション区切り ---- */
.faq-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border, #e0e4f0);
}

.faq-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ---- FAQ セクション見出し ---- */
.faq-section-title {
    font-family: var(--font-serif-ja, 'Noto Serif JP', serif);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red, #990000);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 20px;
    background: var(--brand-red, #990000);
    border-radius: 3px;
    flex-shrink: 0;
}

/* ---- FAQ 製品リンクグリッド ---- */
.faq-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ---- FAQ 製品リンクカード ---- */
.faq-product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-white, #fff);
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    text-decoration: none;
}

.faq-product-card:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
    border-color: var(--brand-red, #990000);
    transform: translateY(-2px);
}

.faq-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-product-card__label {
    font-family: var(--font-en, 'Rajdhani', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-red, #990000);
}

.faq-product-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    line-height: 1.4;
}

.faq-product-card__arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-section, #f2f4fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s ease;
}

.faq-product-card:hover .faq-product-card__arrow {
    background: var(--brand-red, #990000);
    color: #fff;
}

.faq-product-card__arrow svg {
    stroke: var(--brand-navy, #0d1b3e);
    transition: stroke 0.28s ease;
}

.faq-product-card:hover .faq-product-card__arrow svg {
    stroke: #fff;
}

/* ---- レスポンシブ ---- */
@media screen and (max-width: 767px) {
    .faq-body {
        padding: 32px 0 56px;
    }

    .faq-product-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================================
   FAQ 製品別詳細ページ共通スタイル
   （in_adamreport.html / in_adamrex.html 等）
   =============================================== */

/* ---- ページ本文エリア ---- */
.faq-detail-body {
    padding: 48px 0 80px;
    background: var(--bg-white, #fff);
}

.faq-detail-body .container {
    max-width: 900px;
}

/* ---- 操作説明ノート ---- */
.faq-detail-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    background: var(--bg-light, #f8f8fc);
    border-left: 4px solid var(--accent-cyan, #00c8e8);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    padding: 13px 18px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.faq-detail-note svg {
    flex-shrink: 0;
    stroke: var(--accent-cyan, #00c8e8);
}

/* ---- カテゴリセクション ---- */
.faq-cat-section {
    margin-bottom: 36px;
}

.faq-cat-section:last-child {
    margin-bottom: 0;
}

/* ---- カテゴリ見出し ---- */
.faq-cat-title {
    font-family: var(--font-serif-ja, 'Noto Serif JP', serif);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0 0 14px;
    padding: 10px 16px;
    background: var(--brand-navy, #0d1b3e);
    color: #fff;
    border-radius: var(--radius, 8px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-cat-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--accent-cyan, #00c8e8);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ---- アコーディオン（details/summary） ---- */
.faq-accordion {
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.28s ease;
}

.faq-accordion:last-child {
    margin-bottom: 0;
}

.faq-accordion:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
}

/* details が開いたとき */
.faq-accordion[open] {
    border-color: var(--brand-navy, #0d1b3e);
}

/* ---- サマリー（質問行） ---- */
.faq-accordion summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-light, #f8f8fc);
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
    user-select: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion[open] summary {
    background: var(--brand-navy, #0d1b3e);
}

.faq-accordion summary:hover {
    background: var(--bg-section, #f2f4fa);
}

.faq-accordion[open] summary:hover {
    background: var(--brand-navy-mid, #152246);
}

/* Qバッジ */
.faq-q-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--brand-red, #990000);
    color: #fff;
    font-family: var(--font-en, 'Rajdhani', sans-serif);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-accordion[open] .faq-q-badge {
    background: var(--brand-red-light, #cc0000);
}

/* 質問テキスト */
.faq-q-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    line-height: 1.6;
    flex: 1;
}

.faq-accordion[open] .faq-q-text {
    color: #fff;
}

/* 矢印アイコン */
.faq-q-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, background 0.2s;
}

.faq-q-icon svg {
    stroke: var(--brand-navy, #0d1b3e);
    transition: stroke 0.2s, transform 0.28s ease;
}

.faq-accordion[open] .faq-q-icon {
    background: rgba(255,255,255,0.15);
    transform: rotate(180deg);
}

.faq-accordion[open] .faq-q-icon svg {
    stroke: #fff;
}

/* ---- 回答エリア ---- */
.faq-answer {
    padding: 20px 24px 20px 58px;
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.9;
    border-top: 1px solid var(--border-light, #f0f2f8);
    background: var(--bg-white, #fff);
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ---- レスポンシブ ---- */
@media screen and (max-width: 767px) {
    .faq-detail-body {
        padding: 32px 0 56px;
    }

    .faq-accordion summary {
        padding: 14px 16px;
        gap: 10px;
    }

    .faq-answer {
        padding: 16px 16px 16px 16px;
    }

    .faq-q-badge {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 11px;
    }

    .faq-q-text {
        font-size: 13px;
    }
}
