.han-sss-widget,
.han-sss-widget * {
    box-sizing: border-box;
}

.han-sss-widget {
    --han-sss-accent: #16a34a;
    --han-sss-accent-dark: #12823c;
    --han-sss-accent-soft: #ecfdf3;
    --han-sss-text: #1f2937;
    --han-sss-muted: #6b7280;
    --han-sss-border: #e5e7eb;
    --han-sss-card-bg: #ffffff;
    --han-sss-soft-bg: #f8faf8;
    position: relative;
    overflow: hidden;
    color: var(--han-sss-text);
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #fbfffc 0%, #f7f9f8 48%, #ffffff 100%);
}

.han-sss-widget a,
.han-sss-widget button,
.han-sss-widget input {
    font-family: inherit;
}

.han-sss-widget button,
.han-sss-widget input {
    outline: none;
}

.han-sss-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 0 56px;
}

.han-sss-bg-dot {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(22, 163, 74, .12);
    border-radius: 50%;
    opacity: .9;
    pointer-events: none;
}

.han-sss-bg-dot::before,
.han-sss-bg-dot::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(22, 163, 74, .11);
    border-radius: inherit;
}

.han-sss-bg-dot::after {
    inset: 58px;
}

.han-sss-bg-dot-one {
    top: 96px;
    left: -90px;
}

.han-sss-bg-dot-two {
    top: 80px;
    right: 8%;
    width: 12px;
    height: 12px;
    background: var(--han-sss-accent);
    border: 0;
    border-radius: 3px;
    transform: rotate(45deg);
}

.han-sss-bg-dot-two::before,
.han-sss-bg-dot-two::after {
    display: none;
}

.han-sss-hero {
    text-align: center;
    padding: 18px 0 26px;
}

.han-sss-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 5px 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(22, 163, 74, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    color: var(--han-sss-accent-dark);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(22, 163, 74, .08);
}

.han-sss-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--han-sss-accent-soft);
    color: var(--han-sss-accent);
    font-size: 12px;
    font-weight: 700;
}

.han-sss-title {
    margin: 0;
    color: var(--han-sss-text);
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.han-sss-title span {
    color: var(--han-sss-accent);
}

.han-sss-description {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--han-sss-muted);
    font-size: 17px;
    line-height: 1.85;
    font-weight: 400;
}

.han-sss-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    min-height: 60px;
    margin: 28px auto 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--han-sss-border);
    border-radius: 13px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .06);
}

.han-sss-search-icon {
    flex: 0 0 auto;
    display: inline-flex;
    width: 42px;
    justify-content: center;
    color: #8a94a6;
    font-size: 20px;
}

.han-sss-search input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0 !important;
    background: transparent !important;
    color: var(--han-sss-text);
    padding: 0 6px !important;
    font-size: 15px;
    box-shadow: none !important;
}

.han-sss-search input::placeholder {
    color: #98a2b3;
}

.han-sss-search button {
    flex: 0 0 auto;
    min-width: 110px;
    height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: var(--han-sss-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.han-sss-search button:hover {
    background: var(--han-sss-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, .22);
}

.han-sss-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 18px 0 36px;
}

.han-sss-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid var(--han-sss-border);
    border-radius: 10px;
    background: #fff;
    color: var(--han-sss-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(17, 24, 39, .03);
    transition: all .2s ease;
}

.han-sss-tab:hover {
    border-color: rgba(22, 163, 74, .35);
    color: var(--han-sss-accent-dark);
    transform: translateY(-1px);
}

.han-sss-tab.is-active {
    border-color: transparent;
    background: var(--han-sss-accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(22, 163, 74, .20);
}

.han-sss-tab-icon,
.han-sss-cat-icon,
.han-sss-card-icon-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.han-sss-tab svg,
.han-sss-tab i,
.han-sss-cat svg,
.han-sss-cat i {
    width: 1em;
    height: 1em;
    color: currentColor;
    fill: currentColor;
}

.han-sss-main {
    display: grid;
    gap: 28px;
    align-items: start;
}

.han-sss-main.has-sidebar {
    grid-template-columns: 300px minmax(0, 1fr);
}

.han-sss-main.no-sidebar {
    grid-template-columns: 1fr;
}

.han-sss-sidebar {
    display: grid;
    gap: 16px;
}

.han-sss-sidebar-card,
.han-sss-panel,
.han-sss-cta,
.han-sss-card {
    background: var(--han-sss-card-bg);
    border: 1px solid var(--han-sss-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .035);
}

.han-sss-sidebar-card {
    padding: 22px 18px;
}

.han-sss-sidebar-card h3,
.han-sss-cta h3,
.han-sss-card h3 {
    margin: 0;
    color: var(--han-sss-text);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -.2px;
}

.han-sss-sidebar-line {
    width: 42px;
    height: 2px;
    margin: 12px 0 16px;
    background: var(--han-sss-accent);
    border-radius: 99px;
}

.han-sss-cat-list {
    display: grid;
    gap: 8px;
}

.han-sss-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--han-sss-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.han-sss-cat-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.han-sss-cat-icon {
    color: #78839a;
}

.han-sss-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--han-sss-accent-soft);
    color: var(--han-sss-accent-dark);
    font-size: 12px;
    font-weight: 700;
}

.han-sss-cat:hover,
.han-sss-cat.is-active {
    background: var(--han-sss-accent-soft);
    color: var(--han-sss-accent-dark);
    border-color: rgba(22, 163, 74, .11);
}

.han-sss-cat:hover .han-sss-cat-icon,
.han-sss-cat.is-active .han-sss-cat-icon {
    color: var(--han-sss-accent);
}

.han-sss-help-card p {
    margin: 12px 0 18px;
    color: var(--han-sss-muted);
    font-size: 14px;
    line-height: 1.8;
}

.han-sss-help-icon,
.han-sss-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(22, 163, 74, .16) 0, rgba(22, 163, 74, .10) 62%, rgba(22, 163, 74, 0) 64%);
    color: var(--han-sss-accent);
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto;
}

.han-sss-panel {
    overflow: hidden;
}

.han-sss-empty {
    padding: 26px;
    color: var(--han-sss-muted);
    font-size: 15px;
    text-align: center;
}

.han-sss-item {
    border-bottom: 1px solid var(--han-sss-border);
}

.han-sss-item:last-child {
    border-bottom: 0;
}

.han-sss-question {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    align-items: center;
    width: 100%;
    gap: 10px;
    min-height: 66px;
    padding: 0 28px;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--han-sss-text);
    cursor: pointer;
}

.han-sss-question-text {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.han-sss-plus {
    position: relative;
    width: 22px;
    height: 22px;
    border: 1px solid var(--han-sss-border);
    border-radius: 50%;
    background: #fff;
    transition: all .2s ease;
}

.han-sss-plus::before,
.han-sss-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    border-radius: 4px;
    background: #8a94a6;
    transform: translate(-50%, -50%);
    transition: all .2s ease;
}

.han-sss-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.han-sss-arrow {
    display: inline-flex;
    justify-content: center;
    color: #6b7280;
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform .2s ease;
}

.han-sss-item.is-open .han-sss-plus {
    background: var(--han-sss-accent);
    border-color: var(--han-sss-accent);
}

.han-sss-item.is-open .han-sss-plus::before,
.han-sss-item.is-open .han-sss-plus::after {
    background: #fff;
}

.han-sss-item.is-open .han-sss-plus::after {
    opacity: 0;
}

.han-sss-item.is-open .han-sss-arrow {
    transform: rotate(180deg);
    color: var(--han-sss-accent);
}

.han-sss-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.han-sss-item.is-open .han-sss-answer-wrap {
    grid-template-rows: 1fr;
}

.han-sss-answer {
    overflow: hidden;
    padding: 0 64px;
    color: var(--han-sss-muted);
    font-size: 15px;
    line-height: 1.8;
}

.han-sss-item.is-open .han-sss-answer {
    padding-bottom: 24px;
}

.han-sss-answer p {
    margin: 0 0 12px;
}

.han-sss-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.han-sss-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--han-sss-accent-soft);
    color: var(--han-sss-accent-dark);
    font-size: 12px;
    font-weight: 650;
}

.han-sss-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(90deg, #f4fff7 0%, #ffffff 100%);
}

.han-sss-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.han-sss-cta-icon {
    flex: 0 0 auto;
    width: 74px;
    height: 74px;
    margin: 0;
}

.han-sss-cta-text {
    margin: 8px 0 0;
    color: var(--han-sss-muted);
    font-size: 15px;
    line-height: 1.6;
}

.han-sss-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.han-sss-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 650;
    transition: all .2s ease;
}

.han-sss-btn-primary {
    background: var(--han-sss-accent);
    color: #fff !important;
    box-shadow: 0 12px 22px rgba(22, 163, 74, .18);
}

.han-sss-btn-primary:hover {
    background: var(--han-sss-accent-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.han-sss-btn-secondary {
    background: #fff;
    color: var(--han-sss-text) !important;
    border: 1px solid var(--han-sss-border);
}

.han-sss-btn-secondary:hover {
    border-color: rgba(22, 163, 74, .30);
    color: var(--han-sss-accent-dark) !important;
}

.han-sss-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.han-sss-card {
    padding: 26px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.han-sss-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 163, 74, .25);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.han-sss-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--han-sss-accent-soft);
    color: var(--han-sss-accent);
    font-size: 20px;
}

.han-sss-card svg,
.han-sss-card i {
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: currentColor;
}

.han-sss-card-text {
    min-height: 78px;
    margin: 10px 0 16px;
    color: var(--han-sss-muted);
    font-size: 14px;
    line-height: 1.7;
}

.han-sss-card-link {
    color: var(--han-sss-accent-dark) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 650;
}

.han-sss-card-link:hover {
    color: var(--han-sss-accent) !important;
}

@media (max-width: 1024px) {
    .han-sss-inner {
        padding: 48px 0;
    }

    .han-sss-main.has-sidebar {
        grid-template-columns: 1fr;
    }

    .han-sss-sidebar {
        grid-template-columns: 1fr 1fr;
    }

    .han-sss-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .han-sss-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .han-sss-cta-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .han-sss-inner {
        padding: 36px 0;
    }

    .han-sss-hero {
        padding-top: 8px;
    }

    .han-sss-title {
        font-size: 36px;
        letter-spacing: -.8px;
    }

    .han-sss-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .han-sss-search {
        min-height: auto;
        flex-wrap: wrap;
        padding: 10px;
    }

    .han-sss-search-icon {
        width: 28px;
    }

    .han-sss-search input {
        width: calc(100% - 40px);
        flex: 1 1 calc(100% - 40px);
    }

    .han-sss-search button {
        width: 100%;
    }

    .han-sss-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin-bottom: 22px;
        scrollbar-width: thin;
    }

    .han-sss-tab {
        flex: 0 0 auto;
        padding: 0 16px;
    }

    .han-sss-sidebar {
        grid-template-columns: 1fr;
    }

    .han-sss-question {
        min-height: 62px;
        padding: 0 16px;
        grid-template-columns: 24px minmax(0, 1fr) 20px;
    }

    .han-sss-question-text {
        font-size: 15px;
    }

    .han-sss-answer {
        padding: 0 16px 0 50px;
        font-size: 14px;
    }

    .han-sss-item.is-open .han-sss-answer {
        padding-bottom: 20px;
    }

    .han-sss-cta {
        padding: 22px;
    }

    .han-sss-cta-left {
        align-items: flex-start;
        gap: 14px;
    }

    .han-sss-cta-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .han-sss-cta-actions,
    .han-sss-btn {
        width: 100%;
    }

    .han-sss-cards {
        grid-template-columns: 1fr;
    }

    .han-sss-card-text {
        min-height: auto;
    }
}


/* v1.0.1 - Elementor / Hello Elementor global style isolation */
.han-sss-widget[data-han-sss],
.han-sss-widget[data-han-sss] * {
    box-sizing: border-box !important;
}

.elementor .han-sss-widget[data-han-sss],
.han-sss-widget[data-han-sss] {
    color: var(--han-sss-text) !important;
}

.elementor .han-sss-widget[data-han-sss] :is(button,input),
.han-sss-widget[data-han-sss] :is(button,input) {
    font-family: inherit;
}

.elementor .han-sss-widget[data-han-sss] button,
.han-sss-widget[data-han-sss] button {
    -webkit-appearance: none !important;
    appearance: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    outline: none !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-question,
.han-sss-widget[data-han-sss] .han-sss-question {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--han-sss-text) !important;
    border: 0 !important;
    border-radius: 4px !important;
    padding: 0 28px !important;
    min-height: 66px !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-question:hover,
.elementor .han-sss-widget[data-han-sss] .han-sss-question:focus,
.elementor .han-sss-widget[data-han-sss] .han-sss-question:active,
.han-sss-widget[data-han-sss] .han-sss-question:hover,
.han-sss-widget[data-han-sss] .han-sss-question:focus,
.han-sss-widget[data-han-sss] .han-sss-question:active {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--han-sss-text) !important;
    border: 0 !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-tab,
.han-sss-widget[data-han-sss] .han-sss-tab {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--han-sss-text) !important;
    border: 1px solid var(--han-sss-border) !important;
    border-radius: 4px !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-tab.is-active,
.han-sss-widget[data-han-sss] .han-sss-tab.is-active,
.elementor .han-sss-widget[data-han-sss] .han-sss-search button,
.han-sss-widget[data-han-sss] .han-sss-search button,
.elementor .han-sss-widget[data-han-sss] .han-sss-btn-primary,
.han-sss-widget[data-han-sss] .han-sss-btn-primary {
    background: var(--han-sss-accent) !important;
    background-color: var(--han-sss-accent) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-search button:hover,
.han-sss-widget[data-han-sss] .han-sss-search button:hover,
.elementor .han-sss-widget[data-han-sss] .han-sss-btn-primary:hover,
.han-sss-widget[data-han-sss] .han-sss-btn-primary:hover {
    background: var(--han-sss-accent-dark) !important;
    background-color: var(--han-sss-accent-dark) !important;
    color: #ffffff !important;
}

.elementor .han-sss-widget[data-han-sss] input[type="search"],
.han-sss-widget[data-han-sss] input[type="search"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--han-sss-text) !important;
    border-radius: 4px !important;
}

.elementor .han-sss-widget[data-han-sss] :is(.han-sss-badge,.han-sss-badge span,.han-sss-search,.han-sss-search button,.han-sss-tab,.han-sss-sidebar-card,.han-sss-panel,.han-sss-cta,.han-sss-card,.han-sss-cat,.han-sss-cat-count,.han-sss-plus,.han-sss-tags span,.han-sss-btn,.han-sss-card-icon,.han-sss-help-icon,.han-sss-cta-icon,.han-sss-sidebar-line),
.han-sss-widget[data-han-sss] :is(.han-sss-badge,.han-sss-badge span,.han-sss-search,.han-sss-search button,.han-sss-tab,.han-sss-sidebar-card,.han-sss-panel,.han-sss-cta,.han-sss-card,.han-sss-cat,.han-sss-cat-count,.han-sss-plus,.han-sss-tags span,.han-sss-btn,.han-sss-card-icon,.han-sss-help-icon,.han-sss-cta-icon,.han-sss-sidebar-line) {
    border-radius: 4px !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-sidebar-card,
.elementor .han-sss-widget[data-han-sss] .han-sss-panel,
.elementor .han-sss-widget[data-han-sss] .han-sss-cta,
.elementor .han-sss-widget[data-han-sss] .han-sss-card,
.han-sss-widget[data-han-sss] .han-sss-sidebar-card,
.han-sss-widget[data-han-sss] .han-sss-panel,
.han-sss-widget[data-han-sss] .han-sss-cta,
.han-sss-widget[data-han-sss] .han-sss-card {
    background-color: var(--han-sss-card-bg) !important;
    border: 1px solid var(--han-sss-border) !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-cat,
.han-sss-widget[data-han-sss] .han-sss-cat {
    background: transparent !important;
    color: var(--han-sss-text) !important;
    border: 1px solid transparent !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-cat:hover,
.elementor .han-sss-widget[data-han-sss] .han-sss-cat.is-active,
.han-sss-widget[data-han-sss] .han-sss-cat:hover,
.han-sss-widget[data-han-sss] .han-sss-cat.is-active {
    background: var(--han-sss-accent-soft) !important;
    color: var(--han-sss-accent-dark) !important;
    border-color: rgba(22, 163, 74, .11) !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-btn-secondary,
.han-sss-widget[data-han-sss] .han-sss-btn-secondary {
    background: #ffffff !important;
    color: var(--han-sss-text) !important;
    border: 1px solid var(--han-sss-border) !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-question-text,
.han-sss-widget[data-han-sss] .han-sss-question-text {
    color: var(--han-sss-text) !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-answer,
.han-sss-widget[data-han-sss] .han-sss-answer {
    color: var(--han-sss-muted) !important;
    background: transparent !important;
}

@media (max-width: 767px) {
    .elementor .han-sss-widget[data-han-sss] .han-sss-question,
    .han-sss-widget[data-han-sss] .han-sss-question {
        padding: 0 16px !important;
        min-height: 62px !important;
    }

}

/* v1.0.2 - Responsive accordion text fix + lighter headings */
.han-sss-widget[data-han-sss] {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.han-sss-widget[data-han-sss] .han-sss-inner,
.han-sss-widget[data-han-sss] .han-sss-main,
.han-sss-widget[data-han-sss] .han-sss-panel,
.han-sss-widget[data-han-sss] .han-sss-item {
    min-width: 0 !important;
    max-width: 100% !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-title,
.han-sss-widget[data-han-sss] .han-sss-title {
    font-weight: 600 !important;
}

.elementor .han-sss-widget[data-han-sss] :is(.han-sss-sidebar-card h3,.han-sss-cta h3,.han-sss-card h3),
.han-sss-widget[data-han-sss] :is(.han-sss-sidebar-card h3,.han-sss-cta h3,.han-sss-card h3) {
    font-weight: 600 !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-question,
.han-sss-widget[data-han-sss] .han-sss-question {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 66px !important;
    padding: 16px 24px !important;
    overflow: visible !important;
    white-space: normal !important;
    line-height: normal !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-question-text,
.han-sss-widget[data-han-sss] .han-sss-question-text {
    flex: 1 1 auto !important;
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    color: var(--han-sss-text) !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-plus,
.han-sss-widget[data-han-sss] .han-sss-plus {
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-arrow,
.han-sss-widget[data-han-sss] .han-sss-arrow {
    flex: 0 0 20px !important;
    width: 20px !important;
    min-width: 20px !important;
    align-self: center !important;
}

.elementor .han-sss-widget[data-han-sss] .han-sss-answer,
.han-sss-widget[data-han-sss] .han-sss-answer {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}

@media (max-width: 767px) {
    .elementor .han-sss-widget[data-han-sss] .han-sss-title,
    .han-sss-widget[data-han-sss] .han-sss-title {
        font-size: 31px !important;
        line-height: 1.12 !important;
        font-weight: 600 !important;
        letter-spacing: -.55px !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-question,
    .han-sss-widget[data-han-sss] .han-sss-question {
        align-items: flex-start !important;
        gap: 10px !important;
        min-height: auto !important;
        padding: 15px 14px !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-question-text,
    .han-sss-widget[data-han-sss] .han-sss-question-text {
        font-size: 15px !important;
        line-height: 1.42 !important;
        font-weight: 600 !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-plus,
    .han-sss-widget[data-han-sss] .han-sss-plus,
    .elementor .han-sss-widget[data-han-sss] .han-sss-arrow,
    .han-sss-widget[data-han-sss] .han-sss-arrow {
        margin-top: 1px !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-answer,
    .han-sss-widget[data-han-sss] .han-sss-answer {
        padding: 0 14px 0 46px !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-item.is-open .han-sss-answer,
    .han-sss-widget[data-han-sss] .han-sss-item.is-open .han-sss-answer {
        padding-bottom: 20px !important;
    }
}

@media (max-width: 420px) {
    .elementor .han-sss-widget[data-han-sss] .han-sss-question,
    .han-sss-widget[data-han-sss] .han-sss-question {
        padding-left: 12px !important;
        padding-right: 12px !important;
        gap: 9px !important;
    }

    .elementor .han-sss-widget[data-han-sss] .han-sss-question-text,
    .han-sss-widget[data-han-sss] .han-sss-question-text {
        font-size: 14.5px !important;
    }
}

