/* how_to_use.css */
.page-wrap {
    max-width: 1100px;
    margin: 24px auto;
    padding: 45px 20px;
}

.section {
    background: lightgrey;
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.section h1, .section h2 {
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.section-header i {
    font-size: 26px;
    color: #2f7a37;
}

.dual-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    direction: rtl;
    text-align: right;
    line-height: 2.1;
}

.price-box {
    background: #f1f8f3;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    border-left: 5px solid #2f7a37;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
}

.cta-btn.primary {
    background: #2f7a37;
}

.cta-btn.secondary {
    background: #0d6efd;
}

.cta-btn:hover {
    opacity: 0.9;
}

.language-toggle {
    text-align: right;
    margin-bottom: 20px;
}

.language-toggle button {
    padding: 6px 12px;
    margin-left: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.language-toggle button.active {
    background: #2f7a37;
    color: #fff;
}

@media (max-width: 768px) {
    .dual-text {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 22px;
    }
}
@media (max-width: 480px) {
    .page-wrap {
        padding: 20px 10px;
    }
    .section {
        padding: 18px;
    }
}