.docs-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.docs-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.docs-section p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.docs-section p a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.docs-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.docs-back-btn:hover {
    border-color: var(--border-hover);
    background-color: var(--surface-2);
}

.docs-back-btn i {
    font-size: 0.95rem;
}

.payment-wallets,
.payments-netbanking,
.payments-cards {
    margin-top: 1.5rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--border);
}

.payment-wallets h3,
.payments-netbanking h3,
.payments-cards h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-wallets p,
.payments-netbanking p,
.payments-cards p {
    margin-bottom: 1rem;
}

table {
    width: 70%;
    border-collapse: collapse;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

th,
td {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

th:last-child,
td:last-child {
    border-right: none;
}

th {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
    background-color: var(--surface-2);
}

td {
    color: var(--text-muted);
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    table {
        width: 100%;
    }
}
