/* ========== Help Pages Styles ========== */

/* --- Main Section --- */
.help-main-section {
    padding: 50px 0;
}
.help-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.help-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.help-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.help-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}
.help-content ul,
.help-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.help-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* --- Divider --- */
.help-divider {
    height: 1px;
    background: #eee;
    margin: 30px 0;
}
.help-divider-thick {
    height: 2px;
    background: #f7941d;
    width: 60px;
    margin: 30px 0;
}

/* --- Info Box --- */
.help-info-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid;
}
.help-info-box.info {
    background: #fbf2e8;
    border-color: #f7941d;
}
.help-info-box.success {
    background: #e8f5e9;
    border-color: #4caf50;
}
.help-info-box.warning {
    background: #fff3e0;
    border-color: #ff9800;
}
.help-info-box h6 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}
.help-info-box p {
    font-size: 14px;
    color: #555;
    margin: 0 0 8px 0;
}
.help-info-box ul {
    margin-bottom: 0;
}
.help-info-box li {
    font-size: 14px;
}

/* --- Products Grid --- */
.help-products {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}
.help-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fbf2e8;
    border-radius: 8px;
}
.help-product-item .emoji {
    font-size: 24px;
    flex-shrink: 0;
}
.help-product-item h6 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* --- Features Grid --- */
.help-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}
.help-feature-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.help-feature-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.help-feature-card .icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.help-feature-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}
.help-feature-card p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* --- Payment Methods --- */
.help-payment-methods {
    display: grid;
    gap: 18px;
    margin-bottom: 25px;
}
.help-payment-method {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}
.help-payment-method .badge {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}
.help-payment-method h6 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}
.help-payment-method p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.help-payment-method ul {
    margin-bottom: 0;
}
.help-payment-method li {
    font-size: 14px;
    margin-bottom: 4px;
}

/* --- Security Badges --- */
.help-security {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 25px;
}
.help-security-badge {
    padding: 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}
.help-security-badge .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}
.help-security-badge h6 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}
.help-security-badge p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* --- Checklist --- */
.help-checklist {
    margin-bottom: 25px;
}
.help-checklist li {
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .help-breadcrumb-content h1 {
        font-size: 24px;
    }
    .help-content h1 {
        font-size: 22px;
    }
    .help-content h2 {
        font-size: 18px;
    }
    .help-features {
        grid-template-columns: 1fr;
    }
    .help-security {
        grid-template-columns: 1fr 1fr;
    }
}
