/* ==========================================================================
   GLOBAL FIX (Listivo Safe)
   ========================================================================== */

html, body{
    background:#f5f7fb !important;
}

/* يمنع تعارض القالب */
*{
    box-sizing:border-box;
}

/* ==========================================================================
   MAIN WRAPPER
   ========================================================================== */

.dsp-wrapper{
    max-width:1200px;
    margin:60px auto;
    padding:40px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    z-index:2;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.dsp-wrapper h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111827;
}

.dsp-wrapper h2{
    font-size:30px;
    margin-top:50px;
    margin-bottom:20px;
    color:#1f2937;
}

.dsp-wrapper p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:20px;
}

/* ==========================================================================
   LISTS
   ========================================================================== */

.dsp-wrapper ul{
    margin-top:25px;
    padding-left:20px;
}

.dsp-wrapper li{
    margin-bottom:12px;
    font-size:17px;
    color:#374151;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.dsp-breadcrumbs{
    margin-bottom:25px;
    font-size:14px;
    color:#6b7280;
}

.dsp-breadcrumbs a{
    color:#2563eb;
    text-decoration:none;
}

.dsp-breadcrumbs a:hover{
    text-decoration:underline;
}

/* ==========================================================================
   RELATED LINKS GRID
   ========================================================================== */

.dsp-related-links{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:15px;
}

.dsp-related-links a{
    background:#f3f4f6;
    padding:15px;
    border-radius:12px;
    text-decoration:none;
    color:#111827;
    transition:all .2s ease;
}

.dsp-related-links a:hover{
    transform:translateY(-3px);
    background:#e5e7eb;
}

/* ==========================================================================
   HEADER (Custom)
   ========================================================================== */

.dsp-header{
    background:#090051;
    padding:18px 30px;
}

.dsp-header-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.dsp-logo{
    height:50px;
    width:auto;
    display:block;
}

.dsp-how-button{
    background:#ffffff;
    color:#0f5ef7;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.dsp-how-button:hover{
    opacity:.9;
    transform:translateY(-2px);
}

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */

.dsp-main{
    padding:40px 20px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.dsp-faq{
    margin-top:50px;
}

.dsp-faq-item{
    background:#ffffff;
    border-radius:14px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.dsp-faq-item h3{
    margin-bottom:10px;
    font-size:20px;
    color:#111827;
}







 

.dsp-footer{
    background:#0f172a;
    padding:30px 20px;
    margin-top:60px;
}

.dsp-footer-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.dsp-footer a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    transition:.2s;
}

.dsp-footer a:hover{
    color:#60a5fa;
}