/* ============================================================
   Region Page Template — Custom CSS
   All rules scoped under #region-template.
   No Tailwind utilities — replaces the previous mix entirely.
   ============================================================ */

#region-template {
    /* Tokens — kept in sync with tailwind.config.js theme.colors */
    --tw-primary: #0066FF;
    --tw-secondary: #005EEA;
    --tw-light: #EBF3FF;
    --tw-text: #374151;
    --tw-text-strong: #1f2937;
    --tw-container: 1280px;
    --tw-container-px: 1rem;

    color: var(--tw-text);
    /* Wrapper bg fills the V notch left by the banner's clip-path — matches badges section so they merge */
    background: var(--tw-light);
}

/* Alpine cloak — must be global so initial render hides x-cloak elements */
[x-cloak] {
    display: none !important;
}

#region-template .tw-container {
    max-width: var(--tw-container);
    margin-inline: auto;
    padding-inline: var(--tw-container-px);
    box-sizing: border-box;
}

@media (min-width: 480px) {
    #region-template .tw-container {
        padding-inline: 1.25rem;
    }
}

@media (min-width: 768px) {
    #region-template .tw-container {
        padding-inline: 2rem;
    }
}

/* Defensive: prevent horizontal scrolling caused by decorative absolutes */
#region-template {
    overflow-x: clip;
}

/* ============================================================
   Buttons
   ============================================================ */
#region-template .tw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 56px;
    padding: 0 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

@media (min-width: 480px) {
    #region-template .tw-btn {
        height: 58px;
        padding: 0 1.75rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    #region-template .tw-btn {
        padding: 0 2rem;
    }
}

#region-template .tw-btn:focus {
    outline: none;
}

#region-template .tw-btn:focus-visible {
    outline: 2px solid var(--tw-primary);
    outline-offset: 3px;
}

#region-template .tw-btn__icon {
    width: 18px;
    height: 18px;
    flex: none;
}

#region-template .tw-btn--primary {
    background: var(--tw-primary);
    color: #fff;
    border-color: var(--tw-primary);
}

#region-template .tw-btn--primary:hover {
    background: var(--tw-secondary);
    border-color: var(--tw-secondary);
}

#region-template .tw-btn--on-primary {
    background: #fff;
    color: var(--tw-primary);
    border-color: #fff;
    box-shadow: 0 8px 24px -8px rgba(2, 32, 86, 0.4);
}

#region-template .tw-btn--on-primary:hover {
    background: var(--tw-light);
    border-color: var(--tw-light);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(2, 32, 86, 0.5);
}

#region-template .tw-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

#region-template .tw-btn--outline-white:hover {
    background: #fff;
    color: var(--tw-primary);
}

#region-template .tw-btn--full {
    width: 100%;
    height: auto;
    padding: 1.25rem 1.5rem;
    border-radius: 999px;
    font-size: 1.0625rem;
}

/* ============================================================
   Banner
   ============================================================ */
#region-template .tw-banner {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, var(--tw-primary) 0%, #0058DD 100%);
    color: #fff;
    padding: 5rem 0 3.5rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
}

@media (min-width: 768px) {
    #region-template .tw-banner {
        padding: 7.5rem 0 5.5rem;
    }
}

/* Subtle dot grid texture overlay */
#region-template .tw-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

#region-template .tw-banner__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    #region-template .tw-banner__inner {
        margin-bottom: 3.5rem;
    }
}

#region-template .tw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Anybody', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin: 0 0 1.5rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    #region-template .tw-eyebrow {
        font-size: 0.875rem;
    }
}

#region-template .tw-eyebrow::before,
#region-template .tw-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

/* Hide decorative lines on narrow phones — the eyebrow text alone fits better */
@media (max-width: 479px) {

    #region-template .tw-eyebrow::before,
    #region-template .tw-eyebrow::after {
        display: none;
    }
}

#region-template .tw-banner__title {
    font-family: 'Bowlby One', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    font-size: clamp(1.75rem, 5vw, 3.875rem);
    line-height: 1.02;
    margin: 0 auto 1.5rem;
    max-width: 24ch;
    color: #fff;
    text-wrap: balance;
}

#region-template .tw-banner__lead {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    max-width: 920px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    #region-template .tw-banner__lead {
        margin-bottom: 2.5rem;
    }
}

#region-template .tw-banner__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
}

@media (min-width: 480px) {
    #region-template .tw-banner__cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    #region-template .tw-banner__cta {
        gap: 1rem;
    }
}

/* Stats */
#region-template .tw-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 1100px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    #region-template .tw-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

#region-template .tw-stats__item {
    text-align: center;
    background: #fff;
    border-radius: 0.875rem;
    padding: 1.25rem 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    color: var(--tw-primary);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 28px -12px rgba(2, 32, 86, 0.4);
}

@media (min-width: 768px) {
    #region-template .tw-stats__item {
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }
}

#region-template .tw-stats__icon {
    width: 32px;
    height: 32px;
    color: var(--tw-primary);
    margin: 0 auto;
}

@media (min-width: 768px) {
    #region-template .tw-stats__icon {
        width: 38px;
        height: 38px;
    }
}

#region-template .tw-stats__number {
    font-family: 'Bowlby One', sans-serif;
    font-size: clamp(1.875rem, 3.2vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--tw-primary);
    white-space: nowrap;
}

#region-template .tw-stats__number--text {
    font-size: clamp(1.125rem, 1.7vw, 1.375rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

#region-template .tw-stats__label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.6875rem;
    line-height: 1.2;
    color: var(--tw-primary);
    opacity: 0.78;
}

@media (min-width: 768px) {
    #region-template .tw-stats__label {
        font-size: 0.75rem;
    }
}

/* Banner decorative SVG blobs — light tint visible against blue */
#region-template .tw-banner__blob {
    position: absolute;
    top: -10%;
    z-index: 0;
    pointer-events: none;
    width: 700px;
    height: auto;
}

#region-template .tw-banner__blob path {
    fill: rgba(255, 255, 255, 0.05);
}

#region-template .tw-banner__blob--left {
    left: -35%;
}

#region-template .tw-banner__blob--right {
    right: -35%;
}

@media (min-width: 1280px) {
    #region-template .tw-banner__blob--left {
        left: -22%;
    }

    #region-template .tw-banner__blob--right {
        right: -22%;
    }
}

/* ============================================================
   Trust badges row
   ============================================================ */
#region-template .tw-badges {
    background: var(--tw-light);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    padding: 2.25rem 0;
    position: relative;
}

@media (min-width: 768px) {
    #region-template .tw-badges {
        padding: 2.5rem 0 2.75rem;
    }
}

#region-template .tw-badges__eyebrow {
    text-align: center;
    font-family: 'Anybody', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    color: var(--tw-primary);
    opacity: 0.65;
    margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
    #region-template .tw-badges__eyebrow {
        font-size: 0.75rem;
    }
}

#region-template .tw-badges__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    align-items: stretch;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    #region-template .tw-badges__list {
        grid-template-columns: repeat(3, minmax(0, max-content));
        gap: 0.5625rem;
    }
}

@media (min-width: 1200px) {
    #region-template .tw-badges__list {
        grid-template-columns: repeat(6, minmax(0, max-content));
        gap: 0.5rem;
    }
}

#region-template .tw-badges__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5625rem 0.875rem;
    background: #fff;
    border: 1px solid rgba(0, 102, 255, 0.14);
    border-radius: 999px;
    color: var(--tw-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.1;
    box-shadow: 0 1px 2px rgba(2, 32, 86, 0.05);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

@media (min-width: 640px) {
    #region-template .tw-badges__item {
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    #region-template .tw-badges__item {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        gap: 0.5625rem;
    }
}

@media (min-width: 1200px) {
    #region-template .tw-badges__item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
}

#region-template .tw-badges__item:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 12px -4px rgba(2, 32, 86, 0.12);
    transform: translateY(-1px);
}

#region-template .tw-badges__icon {
    width: 17px;
    height: 17px;
    color: var(--tw-primary);
    flex: none;
}

/* ============================================================
   Generic section + section title
   ============================================================ */
#region-template .tw-section {
    padding: 3rem 0;
    position: relative;
    background: #fff;
}

@media (min-width: 768px) {
    #region-template .tw-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1280px) {
    #region-template .tw-section {
        padding: 7rem 0;
    }
}

#region-template .tw-section--primary {
    background: var(--tw-primary);
    color: #fff;
    overflow: hidden;
}

#region-template .tw-section--light {
    background: var(--tw-light);
}

#region-template .tw-section__eyebrow {
    font-family: 'Anybody', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tw-primary);
    font-size: 0.8125rem;
    margin: 0 0 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    #region-template .tw-section__eyebrow {
        font-size: 0.9375rem;
    }
}

#region-template .tw-section--primary .tw-section__eyebrow {
    color: #fff;
}

#region-template .tw-section__title {
    font-family: 'Bowlby One', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    font-size: clamp(1.875rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: var(--tw-primary);
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 22ch;
    text-wrap: balance;
}

#region-template .tw-section--primary .tw-section__title {
    color: #fff;
}

#region-template .tw-section__lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--tw-text);
}

@media (min-width: 768px) {
    #region-template .tw-section__lead {
        font-size: 1.125rem;
        margin-bottom: 3.5rem;
    }
}

#region-template .tw-section--primary .tw-section__lead {
    color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   Intro (What We Do)
   ============================================================ */
#region-template .tw-intro__inner {
    max-width: 1140px;
    margin-inline: auto;
    text-align: center;
}

#region-template .tw-intro__body {
    font-size: 1rem;
    line-height: 1.65;
}

@media (min-width: 768px) {
    #region-template .tw-intro__body {
        font-size: 1.125rem;
    }
}

#region-template .tw-intro__body p {
    margin: 0 0 1.25rem;
}

#region-template .tw-intro__body p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   Service cards
   ============================================================ */
#region-template .tw-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    #region-template .tw-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 960px) {
    #region-template .tw-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1280px) {
    #region-template .tw-services__grid {
        gap: 2rem;
    }
}

#region-template .tw-card {
    background: #fff;
    color: var(--tw-text);
    border-radius: 1rem;
    padding: 1.5rem;
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}

@media (min-width: 768px) {
    #region-template .tw-card {
        padding: 1.75rem;
    }
}

#region-template .tw-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--tw-primary);
    margin-bottom: 1rem;
}

#region-template .tw-card__icon svg {
    width: 24px;
    height: 24px;
}

#region-template .tw-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: var(--tw-primary);
    text-wrap: balance;
}

@media (min-width: 768px) {
    #region-template .tw-card__title {
        font-size: 1.25rem;
    }
}

#region-template .tw-card:hover {
    box-shadow: 0 18px 40px -20px rgba(2, 32, 86, 0.25);
    transform: translateY(-2px);
}

#region-template .tw-card p,
#region-template .tw-card li {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    line-height: 1.55;
}

#region-template .tw-card__intro {
    font-weight: 600;
    margin-bottom: 0.5rem !important;
    color: var(--tw-text-strong);
}

#region-template .tw-card__list {
    padding-left: 1.25rem;
    margin: 0;
    line-height: 1.6;
}

#region-template .tw-card__list li {
    margin-bottom: 0.25rem;
    list-style: disc;
}

#region-template .tw-card__list a {
    color: var(--tw-primary);
    text-decoration: underline;
}

#region-template .tw-card__list a:hover {
    text-decoration: none;
}

/* Services bottom CTA */
#region-template .tw-services__footer {
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    #region-template .tw-services__footer {
        margin-top: 4rem;
    }
}

#region-template .tw-services__footer-text {
    font-size: 1.0625rem;
    line-height: 1.55;
    margin: 0 auto 1.5rem;
    max-width: 720px;
}

@media (min-width: 768px) {
    #region-template .tw-services__footer-text {
        font-size: 1.1875rem;
    }
}

#region-template .tw-cta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
}

@media (min-width: 480px) {
    #region-template .tw-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    #region-template .tw-cta-row {
        gap: 1rem;
    }
}

/* Section background blob (decorative) */
#region-template .tw-section__blob {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
    width: 600px;
    height: auto;
}

/* Keep section content above the blob */
#region-template .tw-section>.tw-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   Process
   ============================================================ */
#region-template .tw-process__inner {
    max-width: 1140px;
    margin-inline: auto;
}

#region-template .tw-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    #region-template .tw-process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
}

#region-template .tw-step {
    display: flex;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    #region-template .tw-step {
        gap: 1.5rem;
    }
}

#region-template .tw-step__number {
    flex: none;
    font-family: 'Bowlby One', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3rem);
    line-height: 1;
    color: rgba(0, 102, 255, 0.22);
    letter-spacing: -0.04em;
    min-width: 52px;
}

@media (min-width: 768px) {
    #region-template .tw-step__number {
        font-size: 60px;
        min-width: 76px;
    }
}

#region-template .tw-step__title {
    font-size: 1.1875rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--tw-primary);
    line-height: 1.25;
}

@media (min-width: 768px) {
    #region-template .tw-step__title {
        font-size: 1.375rem;
    }
}

#region-template .tw-step__body {
    color: var(--tw-text);
    line-height: 1.55;
    margin: 0;
}

#region-template .tw-process__cta {
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================================
   Why Choose
   ============================================================ */
#region-template .tw-why__inner {
    max-width: 1120px;
    margin-inline: auto;
}

#region-template .tw-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    #region-template .tw-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    #region-template .tw-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.125rem;
    }
}

#region-template .tw-why__card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.875rem;
    color: #fff;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

#region-template .tw-why__card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

#region-template .tw-why__card-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#region-template .tw-why__card-icon svg {
    width: 22px;
    height: 22px;
}

#region-template .tw-why__card-text {
    margin: 0;
    font-weight: 500;
    line-height: 1.35;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    #region-template .tw-why__card-text {
        font-size: 1rem;
    }
}

#region-template .tw-why__promise {
    margin: 2.25rem auto 0;
    text-align: center;
    font-family: 'Bowlby One', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: clamp(1.125rem, 1.85vw, 1.625rem);
    color: #fff;
    max-width: 30ch;
    text-wrap: balance;
    line-height: 1.15;
    position: relative;
    padding-top: 1.75rem;
}

@media (min-width: 768px) {
    #region-template .tw-why__promise {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

#region-template .tw-why__promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   Coverage Area
   ============================================================ */
#region-template .tw-coverage__inner {
    max-width: 1140px;
    margin-inline: auto;
    text-align: center;
    color: var(--tw-primary);
}

#region-template .tw-coverage__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

@media (min-width: 640px) {
    #region-template .tw-coverage__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    #region-template .tw-coverage__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.875rem;
    }
}

#region-template .tw-coverage__link,
#region-template .tw-coverage__current {
    display: block;
    border-radius: 0.75rem;
    padding: 1rem 1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--tw-primary);
    line-height: 1.25;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {

    #region-template .tw-coverage__link,
    #region-template .tw-coverage__current {
        font-size: 1rem;
        padding: 1.0625rem 1.25rem;
    }
}

#region-template .tw-coverage__link {
    background: #fff;
    color: var(--tw-primary);
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

#region-template .tw-coverage__link:hover {
    background: var(--tw-primary);
    color: #fff;
}

#region-template .tw-coverage__current {
    background: var(--tw-primary);
    color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
#region-template .tw-faq__inner {
    max-width: 1100px;
    margin-inline: auto;
}

#region-template .tw-faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    #region-template .tw-faq__list {
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
}

#region-template .tw-faq__item {
    background: #fff;
    color: var(--tw-primary);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

#region-template .tw-faq__heading {
    margin: 0;
}

#region-template .tw-faq__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem 1.25rem;
    text-transform: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

@media (min-width: 768px) {
    #region-template .tw-faq__trigger {
        padding: 1.75rem 2.25rem;
        font-size: 1.0625rem;
    }
}

#region-template .tw-faq__trigger:focus {
    outline: none;
}

#region-template .tw-faq__trigger:focus-visible {
    outline: 2px solid var(--tw-primary);
    outline-offset: -2px;
}

#region-template .tw-faq__question {
    flex: 1 1 auto;
}

#region-template .tw-faq__icon {
    flex: none;
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: var(--tw-primary);
}

#region-template .tw-faq__icon svg {
    width: 100%;
    height: 100%;
}

#region-template .tw-faq__panel {
    padding: 0 1.25rem 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--tw-text);
}

@media (min-width: 768px) {
    #region-template .tw-faq__panel {
        padding: 0 2.25rem 1.75rem;
    }
}

#region-template .tw-faq__panel p {
    margin: 0;
}

#region-template .tw-faq__panel a {
    color: var(--tw-primary);
    text-decoration: underline;
}

#region-template .tw-faq__panel a:hover {
    text-decoration: none;
}

#region-template .tw-faq__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

#region-template .tw-faq__cta .tw-btn {
    width: 100%;
}

@media (min-width: 768px) {
    #region-template .tw-faq__cta .tw-btn {
        width: auto;
        min-width: 220px;
    }
}