:root {
    --help-bg: #f6f8fb;
    --help-card: #ffffff;
    --help-text: #1f2937;
    --help-muted: #6b7280;
    --help-primary: #0f766e;
    --help-primary-dark: #0b5e58;
    --help-border: #dbe3ea;
    --help-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Only the Help content area, not the navbar */
.help-page {
    background: var(--help-bg);
    color: var(--help-text);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.9;
}

.help-page a {
    color: var(--help-primary);
    text-decoration: none;
}

.help-page a:hover {
    text-decoration: underline;
}

.help-container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.help-hero {
    padding: 48px 0 28px;
}

.help-hero-card {
    background: linear-gradient(135deg, #e6fffb, #ffffff);
    border: 1px solid var(--help-border);
    box-shadow: var(--help-shadow);
    border-radius: 20px;
    padding: 28px;
}

.help-hero h1 {
    margin: 0 0 12px;
    font-size: 2rem;
    line-height: 1.5;
    color: var(--help-primary-dark);
}

.help-hero p {
    margin: 0 0 12px;
    color: var(--help-muted);
    max-width: 800px;
}

.help-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.help-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: bold;
    border: 1px solid var(--help-primary);
    transition: 0.2s ease;
}

.help-btn-primary {
    background: var(--help-primary);
    color: white !important;
}

.help-btn-primary:hover {
    background: var(--help-primary-dark);
    text-decoration: none;
}

.help-btn-secondary {
    background: white;
    color: var(--help-primary);
}

.help-btn-secondary:hover {
    background: #f0fdfa;
    text-decoration: none;
}

.help-section {
    padding: 22px 0 10px;
}

.help-section-title {
    margin: 0 0 18px;
    font-size: 1.65rem;
    color: var(--help-primary-dark);
}

.help-section-lead {
    margin: 0 0 24px;
    color: var(--help-muted);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.help-card {
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 18px;
    box-shadow: var(--help-shadow);
    padding: 22px;
}

.help-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--help-primary-dark);
}

.help-card p {
    margin: 0 0 12px;
    color: var(--help-text);
}

.help-steps {
    margin: 14px 0 0;
}

html[dir="rtl"] .help-steps {
    padding-right: 20px;
    padding-left: 0;
}

html[dir="ltr"] .help-steps {
    padding-left: 20px;
    padding-right: 0;
}

.help-steps li {
    margin-bottom: 8px;
}

.help-image-box {
    margin-top: 16px;
    width: 100%;
    min-height: 180px;
    border: 2px dashed #b8c7d3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--help-muted);
    background: #fafcfe;
    padding: 18px;
}

.help-image-box img {
    width: 100%;
    max-width: 700px;
    border-radius: 16px;
}

.help-faq-list {
    display: grid;
    gap: 14px;
}

.help-faq-list details {
    background: var(--help-card);
    border: 1px solid var(--help-border);
    border-radius: 14px;
    box-shadow: var(--help-shadow);
    padding: 16px 18px;
}

.help-faq-list summary {
    cursor: pointer;
    font-weight: bold;
    color: var(--help-primary-dark);
}

.help-faq-list details p {
    margin: 12px 0 0;
    color: var(--help-text);
}

.help-footer {
    padding: 30px 0 50px;
    color: var(--help-muted);
    text-align: center;
    background: var(--help-bg);
    font-family: Tahoma, Arial, sans-serif;
}

@media (max-width: 820px) {
    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-hero h1 {
        font-size: 1.6rem;
    }
}