body {
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
    margin: 0;
    color: #1f2937;
    background: #ffffff;
}

.help-header {
    background: #0f172a;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.help-header-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
}

.help-header-navigation a:hover {
    background: rgba(255,255,255,0.15);
}

.help-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.help-content {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}

.help-section {
    margin-bottom: 60px;
}

.help-section h2 {
    font-size: 2rem;
    color: #0f172a;
}

.help-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help-card {
    background:white;
    border-radius:14px;
    padding:25px;
    box-shadow:
       0 5px 20px rgba(0,0,0,.08);
}

.help-card:hover {
    transform:translateY(-3px);
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid #d1d5db;
}

.help-navigation a {
    display: inline-block;
    padding: 10px 18px;

    background: #f8fafc;
    border: 1px solid #dbe3ea;
    border-radius: 10px;

    color: #2563eb;
    text-decoration: none;
    font-weight: 600;

    transition: all .2s ease;
}

.help-navigation a:hover {
    background: #2563eb;
    color: white;
}

.help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
}

.help-table th,
.help-table td {
    text-align: left;
    vertical-align: top;
    padding: 10px 12px;
    border: 1px solid #dbe3ea;
}

.help-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
}

.help-image-row {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin: 20px 0;
}

.help-image-row .help-image {
    width: 220px;
}

.help-image-row img {
    width: 100%;
    height: auto;
}

