.ws-help-page {
    overflow: hidden;
}

.ws-help-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 30px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10264a 0%, #173b70 100%);
    color: #ffffff;
}

.ws-help-hero::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -55px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ws-help-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ws-help-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 29px;
}

.ws-help-hero h1 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.ws-help-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.ws-help-box {
    overflow: hidden;
    border: 1px solid #dfe8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 38, 74, 0.07);
}

.ws-help-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5edf4;
    background: #f7f9fc;
}

.ws-help-box-title {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.ws-help-box-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 7px;
    background: #10264a;
    color: #ffffff;
    font-size: 18px;
}

.ws-help-box-head h2 {
    margin: 0 0 3px;
    color: #10264a;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
}

.ws-help-box-head p {
    margin: 0;
    color: #778595;
    font-size: 12px;
    line-height: 1.5;
}

.ws-help-count {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 6px;
    background: #eaf5fb;
    color: #147fae;
    font-size: 12px;
    font-weight: 900;
}

.ws-help-list {
    margin: 0;
    padding: 12px 20px 20px;
}

.ws-help-item {
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #dfe8f0;
    border-radius: 7px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-help-item:first-child {
    margin-top: 0;
}

.ws-help-item.is-open {
    border-color: #bdd6e7;
    box-shadow: 0 7px 18px rgba(16, 38, 74, 0.07);
}

.ws-help-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 14px 16px;
    border: 0;
    background: #ffffff;
    color: #253449;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ws-help-question:hover,
.ws-help-question:focus {
    background: #f7f9fc;
    color: #10264a;
    outline: none;
}

.ws-help-item.is-open .ws-help-question {
    background: #f7f9fc;
    color: #10264a;
}

.ws-help-question-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.ws-help-question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #eaf5fb;
    color: #147fae;
    font-size: 12px;
    font-weight: 900;
}

.ws-help-question-label {
    padding-top: 4px;
}

.ws-help-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #10264a;
    color: #ffffff;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ws-help-question:hover .ws-help-toggle,
.ws-help-question:focus .ws-help-toggle {
    background: #1A9BD4;
}

.ws-help-item.is-open .ws-help-toggle {
    background: #1A9BD4;
    transform: rotate(180deg);
}

.ws-help-answer {
    display: none;
    padding: 18px 20px 20px 58px;
    border-top: 1px solid #e6edf3;
    background: #ffffff;
    color: #566575;
    font-size: 14px;
    line-height: 1.8;
}

.ws-help-item.is-open .ws-help-answer {
    display: block;
}

.ws-help-answer > :first-child {
    margin-top: 0;
}

.ws-help-answer > :last-child {
    margin-bottom: 0;
}

.ws-help-answer h1,
.ws-help-answer h2,
.ws-help-answer h3,
.ws-help-answer h4,
.ws-help-answer h5,
.ws-help-answer h6 {
    color: #10264a;
    font-weight: 900;
}

.ws-help-answer a {
    color: #1A9BD4;
    font-weight: 800;
    text-decoration: none;
}

.ws-help-answer a:hover {
    color: #10264a;
}

.ws-help-answer img {
    max-width: 100%;
    height: auto;
}

.ws-help-answer table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

.ws-help-answer th,
.ws-help-answer td {
    padding: 9px 10px;
    border: 1px solid #dfe8f0;
    vertical-align: top;
}

.ws-help-empty {
    margin: 20px;
    padding: 24px;
    border: 1px solid #f0d9a5;
    border-radius: 8px;
    background: #fff8e8;
    color: #725315;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.ws-help-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 20px;
    padding: 15px 17px;
    border-left: 4px solid #1A9BD4;
    border-radius: 0 7px 7px 0;
    background: #f4f9fd;
    color: #536273;
    font-size: 13px;
    line-height: 1.7;
}

.ws-help-note i {
    margin-top: 3px;
    color: #1A9BD4;
}

@media (max-width: 767px) {
    .ws-help-hero {
        padding: 24px 20px;
    }

    .ws-help-hero-content {
        align-items: flex-start;
        gap: 14px;
    }

    .ws-help-hero-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        font-size: 23px;
    }

    .ws-help-hero h1 {
        font-size: 24px;
    }

    .ws-help-hero p {
        font-size: 13px;
    }

    .ws-help-box-head {
        align-items: flex-start;
        padding: 16px;
    }

    .ws-help-box-title {
        gap: 10px;
    }

    .ws-help-box-title-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .ws-help-box-head h2 {
        font-size: 17px;
    }

    .ws-help-count {
        display: none;
    }

    .ws-help-list {
        padding: 10px 12px 14px;
    }

    .ws-help-question {
        min-height: 54px;
        padding: 12px;
        font-size: 13px;
    }

    .ws-help-question-text {
        gap: 9px;
    }

    .ws-help-question-number {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .ws-help-question-label {
        padding-top: 3px;
    }

    .ws-help-toggle {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .ws-help-answer {
        padding: 16px;
        font-size: 13px;
        line-height: 1.75;
    }
}
