.help-container {
    display: flex;
    min-height: 100vh;
    background: #f7f8fa;
    color: #222;
    font-family: 'Poppins', Arial, sans-serif;
}
.help-sidebar {
    width: 100%;
    background: #fff;
    padding: 0.5rem;
    border-radius: 12px;
    margin-right: 24px;
    margin-top: 0.5rem;
    height: fit-content;
}
.help-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.help-sidebar a {
    color: #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    background-color: transparent;
    transition: background-color 0.2s, color 0.2s, border-left 0.2s;
    border-left: 3px solid transparent;
}
.help-sidebar a i.fa-fw {
    margin-right: 0.75rem;
    color: #555;
}
.help-sidebar a:hover {
    background-color: #f8f9fa;
    color: #222;
    border-left: 3px solid #eee;
}
.help-sidebar a.active {
    background-color: #e9ecef;
    color: #000;
    font-weight: 600;
    border-left: 3px solid #ffe066;
}
.help-sidebar a.active:hover {
    background-color: #e2e6ea;
    border-left: 3px solid #fdd835;
}
.help-content {
    flex: 1;
    padding: 2rem 0 2rem 0;
}
.help-step {
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #e0e0e0;
}
.help-step-number-wrapper {
    flex-shrink: 0;
    flex-basis: 50px;
    text-align: left;
}
.help-step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    line-height: 1;
   display: block;
}
.help-step-img-container {
    flex-shrink: 0;
    flex-basis: 220px;
    border-right: 1px solid #e0e0e0;
}
.help-step-img-container img.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.help-step-text-pane {
    flex: 1;
}
.help-step-desc {
    flex: 1;
    font-size: 1.08rem;
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.help-step.row {
    display: flex;
    align-items: flex-start;
}
.help-step:not(.row) {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.help-step:not(.row) .help-step-img {
    flex-shrink: 0;
    max-width: 250px;
}
.help-step:not(.row) .help-step-img img {
    width: 100%;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.help-step:not(.row) .help-step-desc {
    flex: 1;
}
@media (max-width: 1100px) {
    .help-container {
        flex-direction: column;
    }
    .help-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    .help-content {
        padding: 1rem 0;
    }
    .help-step {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }
    .help-step-img, .help-step-img img {
        margin: 0 auto 1rem auto;
        width: 100%;
        max-width: 220px;
    }
}
@media (max-width: 767px) {
    .help-step.row {
        flex-direction: column;
    }
    .help-step-number-wrapper {
        flex-basis: auto;
        text-align: center;
        margin-bottom: 0.5rem;
        padding-right: 0;
    }
    .help-step-img-container {
        flex-basis: auto;
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
    .help-step-img-container img.img-fluid {
        max-width: 200px;
    }
    .help-step-text-pane {
        padding-left: 0;
        text-align: center;
    }
    .help-step-desc {
        text-align: left;
    }
}
.img-fluid {
    max-width: 100%;
    height: auto;
} 