/* /Components/Common/About.razor.rz.scp.css */
/**************** Content ****************/

main[b-aic1bcg7yc] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--background-color);
}

.policy[b-aic1bcg7yc] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--medium-color);
    line-height: 1.6;
}

.policy h1[b-aic1bcg7yc] {
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--dark-color);
}

.policy .updated[b-aic1bcg7yc] {
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-aic1bcg7yc] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
    color: var(--dark-color);
}

.policy h3[b-aic1bcg7yc] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--dark-color);
}

.policy p[b-aic1bcg7yc] {
    margin: 8px 0 12px;
}

.policy ul[b-aic1bcg7yc] {
    margin: 8px 0 16px 18px;
}

.policy li[b-aic1bcg7yc] {
    margin: 6px 0;
}

.policy blockquote[b-aic1bcg7yc] {
    background: var(--light-color);
    border-left: 4px solid var(--brand);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--dark-color);
}

a[b-aic1bcg7yc] {
    color: var(--dark-color);
}

a:hover[b-aic1bcg7yc] {
    color: var(--brand);
}
/* /Components/Common/Dropdown.razor.rz.scp.css */
.filter-column[b-6eq5y5kkpb] {
    background: var(--light-color);
    border-radius: var(--border-radius);
    height: 3rem;
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
}

.filter-column:hover[b-6eq5y5kkpb] {
    background: var(--hover-light-color);
}

.dropdown-overlay[b-6eq5y5kkpb] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.dropdown-popup[b-6eq5y5kkpb] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: var(--background-color);
    border-radius: 1.5rem;
    z-index: 999;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dropdown-mobile-header[b-6eq5y5kkpb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mobile-back-btn[b-6eq5y5kkpb] {
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-back-btn:hover[b-6eq5y5kkpb] {
    background: var(--hover-light-color);
}

.dropdown-search[b-6eq5y5kkpb] {
    display: flex;
    align-items: center;
    background: var(--background-color);
    border: 1px solid var(--hover-light-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.dropdown-search input[b-6eq5y5kkpb] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--dark-color);
    font-family: inherit;
}

.search-icon[b-6eq5y5kkpb] {
    color: var(--medium-color);
    font-size: 1rem;
}

.dropdown-options-container[b-6eq5y5kkpb] {
    height: 50vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.dropdown-option[b-6eq5y5kkpb] {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    color: var(--dark-color);
}

.dropdown-option:hover[b-6eq5y5kkpb] {
    background: var(--light-color);
}

.dropdown-option-selected[b-6eq5y5kkpb] {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid var(--brand);
    background: rgba(16, 185, 129, 0.05);
    cursor: pointer;
    color: var(--dark-color);
    font-weight: 600;
}

.dropdown-no-results[b-6eq5y5kkpb] {
    padding: 1rem;
    text-align: center;
    color: var(--medium-color);
    font-size: 0.9rem;
}

.dropdown-cancel-btn[b-6eq5y5kkpb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--light-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
}

.dropdown-cancel-btn:hover[b-6eq5y5kkpb] {
    background: var(--hover-light-color);
}

@media screen and (max-width: 768px) {
    .dropdown-popup[b-6eq5y5kkpb] {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 1.5rem 1.5rem 0 0;
        max-height: 90vh;
    }
}
/* /Components/Common/Footer.razor.rz.scp.css */
/**************** Footer ****************/

.site-footer[b-kslb93m7i7] {
    background-color: var(--background-color);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container[b-kslb93m7i7] {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top[b-kslb93m7i7] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top[b-kslb93m7i7] {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand[b-kslb93m7i7] {
    flex: 1;
    display: flex;
}

.footer-links-grid[b-kslb93m7i7] {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column[b-kslb93m7i7] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4[b-kslb93m7i7] {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.footer-column a[b-kslb93m7i7] {
    color: var(--medium-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column a:hover[b-kslb93m7i7] {
    color: var(--brand);
}

.footer-bottom[b-kslb93m7i7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hover-light-color);
    color: var(--medium-color);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom[b-kslb93m7i7] {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p[b-kslb93m7i7] {
    margin: 0;
}

/**************** Logo ****************/

.brand-icon[b-kslb93m7i7] {
    color: var(--brand);
    font-size: 1.75rem;
    margin-right: 0.5rem;
}

.brand-name[b-kslb93m7i7] {
    font-weight: 700;
    font-size: 1.35rem;
}

.primary[b-kslb93m7i7] {
    color: var(--brand);
}

.secondary[b-kslb93m7i7] {
    color: var(--dark-color);
}
/* /Components/Common/Increment.razor.rz.scp.css */
.counter-row[b-idrq2dga08] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 225px;
}

.input-wrapper[b-idrq2dga08] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex: 1;
}

.number-input[b-idrq2dga08] {
    min-width: 0;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark-color);
    text-align: center;
    font-weight: bold;
    padding: 0;
}

.number-input[b-idrq2dga08]::-webkit-outer-spin-button,
.number-input[b-idrq2dga08]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input[type="number"][b-idrq2dga08] {
    -moz-appearance: textfield;
}

.input-prefix[b-idrq2dga08],
.input-suffix[b-idrq2dga08] {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.counter-button-left[b-idrq2dga08],
.counter-button-right[b-idrq2dga08],
.counter-button-left-disabled[b-idrq2dga08],
.counter-button-right-disabled[b-idrq2dga08] {
    border-radius: 50%;
    background: var(--light-color);
    color: var(--dark-color);
    height: 2.75rem;
    width: 2.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.counter-button-left[b-idrq2dga08],
.counter-button-right[b-idrq2dga08] {
    cursor: pointer;
}

.counter-button-left:hover[b-idrq2dga08],
.counter-button-right:hover[b-idrq2dga08] {
    background: var(--brand);
    color: var(--contrast, #fff);
}

.counter-button-left-disabled[b-idrq2dga08],
.counter-button-right-disabled[b-idrq2dga08] {
    opacity: 0.4;
    cursor: not-allowed;
}
/* /Components/Common/Logo.razor.rz.scp.css */
.brand-logo[b-uau5afi0qx] {
    position: absolute;
    top: 0;
    left: 0;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
}

.brand-icon[b-uau5afi0qx] {
    color: var(--brand);
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    margin-right: 0.35rem;
}

.brand-name[b-uau5afi0qx] {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.primary[b-uau5afi0qx] {
    color: var(--brand);
}

.secondary[b-uau5afi0qx] {
    color: var(--dark-color);
}
/* /Components/Common/Privacy.razor.rz.scp.css */
/**************** Content ****************/

main[b-qgb6vfmbm3] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--background-color);
}

.policy[b-qgb6vfmbm3] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--medium-color);
    line-height: 1.6;
}

.policy h1[b-qgb6vfmbm3] {
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--dark-color);
}

.policy .updated[b-qgb6vfmbm3] {
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-qgb6vfmbm3] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
    color: var(--dark-color);
}

.policy h3[b-qgb6vfmbm3] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--dark-color);
}

.policy p[b-qgb6vfmbm3] {
    margin: 8px 0 12px;
}

.policy ul[b-qgb6vfmbm3] {
    margin: 8px 0 16px 18px;
}

.policy li[b-qgb6vfmbm3] {
    margin: 6px 0;
}

.policy blockquote[b-qgb6vfmbm3] {
    background: var(--light-color);
    border-left: 4px solid var(--brand);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--dark-color);
}

a[b-qgb6vfmbm3] {
    color: var(--dark-color);
}

a:hover[b-qgb6vfmbm3] {
    color: var(--brand);
}
/* /Components/Common/RegionSwitcher.razor.rz.scp.css */
.region-menu[b-m27guvj89b] {
    position: relative;
    z-index: 50;
}

.region-trigger[b-m27guvj89b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--background-color);
    border: 1px solid var(--light-color);
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--dark-color);
    cursor: pointer;
}

.region-trigger:hover[b-m27guvj89b] {
    background: var(--light-color);
    transition: 0.2s ease-in-out;
}

.region-icon i[b-m27guvj89b] {
    color: var(--brand);
    font-size: 1.25rem;
}

.region-name[b-m27guvj89b] {
    font-weight: 600;
    font-size: 0.9rem;
}

.caret[b-m27guvj89b] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}

.region-menu.open .caret[b-m27guvj89b] {
    transform: rotate(180deg);
}

.menu[b-m27guvj89b] {
    position: absolute;
    right: 0;
    top: 3.25rem;
    min-width: 220px;
    background: var(--background-color);
    border: 1px solid var(--light-color);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 20;
}

.region-menu.open .menu[b-m27guvj89b] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.menu-backdrop[b-m27guvj89b] {
    position: fixed;
    inset: 0;
    background: transparent;
    border: none;
    z-index: 15;
    width: 100vw;
    height: 100vh;
    cursor: default;
}

.menu a[b-m27guvj89b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s ease;
}

.menu a:hover[b-m27guvj89b] {
    background: var(--light-color);
}

.menu i[b-m27guvj89b] {
    color: var(--brand);
    width: 1.25rem;
    text-align: center;
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .menu[b-m27guvj89b] {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        min-width: 100%;
        border-radius: 1.5rem 1.5rem 0 0;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
        padding: 1.5rem 1rem calc(1.5rem + env(safe-area-inset-bottom));
        transform: translateY(100%);
    }

    .menu a[b-m27guvj89b] {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid var(--light-color);
        margin-bottom: 0.5rem;
    }

    .menu a:last-child[b-m27guvj89b] {
        margin-bottom: 0;
    }
}
/* /Components/Common/TermsOfService.razor.rz.scp.css */
/**************** Content ****************/

main[b-ek36zvc1b3] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--background-color);
}

.policy[b-ek36zvc1b3] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--medium-color);
    line-height: 1.6;
}

.policy h1[b-ek36zvc1b3] {
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--dark-color);
}

.policy .updated[b-ek36zvc1b3] {
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-ek36zvc1b3] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
    color: var(--dark-color);
}

.policy h3[b-ek36zvc1b3] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--dark-color);
}

.policy p[b-ek36zvc1b3] {
    margin: 8px 0 12px;
}

.policy ul[b-ek36zvc1b3] {
    margin: 8px 0 16px 18px;
}

.policy li[b-ek36zvc1b3] {
    margin: 6px 0;
}

.policy blockquote[b-ek36zvc1b3] {
    background: var(--light-color);
    border-left: 4px solid var(--brand);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--dark-color);
}

a[b-ek36zvc1b3] {
    color: var(--dark-color);
}

a:hover[b-ek36zvc1b3] {
    color: var(--brand);
}
/* /Components/Pages/Home.razor.rz.scp.css */
.calc-wrapper[b-yti33p2k82] {
    max-width: 1000px;
    margin: 6rem auto 6rem auto;
    padding: 0 1.25rem;
    background: var(--background-color);
}

.calc-group[b-yti33p2k82] {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.menu[b-yti33p2k82] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999 !important;
}

@media (min-width: 768px) {
    .calc-group[b-yti33p2k82] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .controls-panel[b-yti33p2k82] {
        padding: 2.5rem 2.5rem 2.5rem 0;
    }

    .results-panel[b-yti33p2k82] {
        padding: 2.5rem 0 2.5rem 2.5rem;
    }
}

.controls-panel[b-yti33p2k82] {
    padding: 1.5rem 0;
    background: var(--background-color);
}

.form-group[b-yti33p2k82] {
    margin-bottom: 1.75rem;
}

.form-group label[b-yti33p2k82] {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.input-desc[b-yti33p2k82] {
    font-size: 0.85rem;
    color: var(--medium-color);
    margin-top: -0.25rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.results-panel[b-yti33p2k82] {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.result-header[b-yti33p2k82] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    color: var(--medium-color);
}

.result-amount[b-yti33p2k82] {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1;
    color: var(--error-color);
}

.summary-grid[b-yti33p2k82] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    width: 100%;
}

.summary-item[b-yti33p2k82] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.summary-item label[b-yti33p2k82] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    color: var(--medium-color);
}

.summary-item .val[b-yti33p2k82] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}

.option-row[b-yti33p2k82] {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 0.5rem;
}

.chip[b-yti33p2k82], .selected-chip[b-yti33p2k82] {
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.chip[b-yti33p2k82] {
    background: var(--light-color);
    color: var(--dark-color);
}

.chip:hover[b-yti33p2k82] {
    background-color: var(--brand);
    color: var(--background-color);
}

.selected-chip[b-yti33p2k82] {
    background-color: var(--brand);
    color: var(--background-color);
}

.segmented-control[b-yti33p2k82] {
    display: flex;
    background-color: var(--background-color);
    border: 2px solid var(--brand);
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}

.segmented-control .segment[b-yti33p2k82] {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: bold;
    color: var(--brand);
    transition: all 0.2s ease;
}

.segmented-control .segment.active[b-yti33p2k82] {
    background-color: var(--brand);
    color: var(--background-color);
}

/**************** Section Titles ****************/

.faq-wrapper[b-yti33p2k82] {
    display: flex;
    max-width: 900px;
    margin: auto;
    padding: 0 1.25rem;
    flex-direction: column;
    width: 100%;
}

/**************** Section Titles ****************/

.header[b-yti33p2k82] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.25rem;
}

.title[b-yti33p2k82] {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 0.75rem 0;
    color: var(--dark-color);
}

.thick-line[b-yti33p2k82] {
    border: none;
    width: 30%;
    border-top: 5px solid var(--brand);
    margin: 0.5rem 0;
    text-align: center;
    border-radius: 12px;
}

.subtitle[b-yti33p2k82] {
    margin: 0 auto;
    max-width: 56ch;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-color);
}

/**************** Tabs ****************/

.tab-option-row[b-yti33p2k82] {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.tab-option-row[b-yti33p2k82]::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .tab-option-row[b-yti33p2k82] {
        justify-content: center;
    }
}

.tab-chip[b-yti33p2k82], .tab-selected-chip[b-yti33p2k82] {
    border-radius: 50rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.tab-chip[b-yti33p2k82] {
    background: var(--light-color);
    color: var(--dark-color);
}

.tab-chip:hover[b-yti33p2k82] {
    background: var(--brand);
    color: var(--background-color);
}

.tab-selected-chip[b-yti33p2k82] {
    background: var(--brand);
    color: var(--background-color);
}

/**************** Common Questions ****************/

.faq-list[b-yti33p2k82] {
    display: grid;
    gap: 0.6rem;
    padding-bottom: 8rem;
}

.faq-item[b-yti33p2k82] {
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    transition: background 180ms ease, border-color 180ms ease;
}

.faq-item:hover[b-yti33p2k82],
.faq-item[open][b-yti33p2k82] {
    background: var(--light-color);
}

.faq-q[b-yti33p2k82] {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    user-select: none;
    color: var(--dark-color);
    font-weight: 700;
}

.faq-q[b-yti33p2k82]::-webkit-details-marker {
    display: none;
}

.faq-chevron[b-yti33p2k82] {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--dark-color);
    flex: 0 0 auto;
    transition: transform 220ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.faq-item[open] .faq-chevron[b-yti33p2k82] {
    transform: rotate(180deg);
}

.faq-a[b-yti33p2k82] {
    padding: 1rem;
    padding-top: 0;
    color: var(--dark-color);
}

.faq-a-inner[b-yti33p2k82] {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease;
    will-change: max-height, opacity, transform;
    padding: 0;
}

.faq-item[open] .faq-a-inner[b-yti33p2k82] {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 0 1.05rem 0;
}

.faq-a-inner p[b-yti33p2k82] {
    margin: 0;
    color: var(--dark-color);
    line-height: 1.65;
}

/**************** Receipt Box ****************/

.receipt-box[b-yti33p2k82] {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.receipt-title[b-yti33p2k82] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.receipt-row[b-yti33p2k82] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.receipt-row:last-child[b-yti33p2k82] {
    margin-bottom: 0;
}

.receipt-label[b-yti33p2k82] {
    color: var(--medium-color);
}

.receipt-value[b-yti33p2k82] {
    font-weight: 600;
    color: var(--dark-color);
}

.receipt-value.deduction[b-yti33p2k82] {
    color: #dc3545;
}

.receipt-value.deduction[b-yti33p2k82]::before {
    content: "- ";
}

.receipt-divider[b-yti33p2k82] {
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 1rem 0;
}
