.elementor-3 .elementor-element.elementor-element-198bef1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c5e7aed */:root {
    --primary: #1a56db;
    --primary-light: #e8f0fe;
    --primary-dark: #1240a8;
    --success: #057a55;
    --success-light: #def7ec;
    --warning: #b45309;
    --warning-light: #fef3c7;
    --danger: #c81e1e;
    --danger-light: #fde8e8;
    --text: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9fafb;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  .pp-wrap {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text);
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
  }

  /* Hero */
  .pp-hero {
    background: linear-gradient(135deg, #1a56db 0%, #1240a8 100%);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  .pp-hero::before {
    content: "";
    position: absolute;
    top: -40px; left: -40px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .pp-hero::after {
    content: "";
    position: absolute;
    bottom: -30px; right: 60px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .pp-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 1.25rem; }
  .pp-hero-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
  }
  .pp-hero-icon svg { width: 28px; height: 28px; color: #fff; }
  .pp-hero h1 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .pp-hero p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.75; }
  .pp-hero-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
  }

  /* TOC */
  .pp-toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
  }
  .pp-toc-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
  }
  .pp-toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 1.5rem;
    list-style: none;
  }
  .pp-toc-grid li a {
    font-size: 13.5px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px dashed transparent;
    transition: border-color .2s;
  }
  .pp-toc-grid li a:hover { border-bottom-color: var(--primary); }
  .pp-toc-grid li a .num {
    width: 20px; height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* Section */
  .pp-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    overflow: hidden;
  }
  .pp-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
  }
  .pp-section-num {
    width: 30px; height: 30px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pp-section-head h2 { font-size: 15px; font-weight: 600; color: var(--text); flex: 1; }
  .pp-arrow {
    width: 20px; height: 20px;
    background: var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .25s, background .2s;
    flex-shrink: 0;
  }
  .pp-arrow svg { width: 10px; height: 10px; color: var(--text-muted); transition: transform .25s; }
  .pp-section.open .pp-arrow { background: var(--primary-light); }
  .pp-section.open .pp-arrow svg { transform: rotate(180deg); color: var(--primary); }

  .pp-section-body {
    padding: 0 1.25rem;
    font-size: 14px;
    color: #374151;
    line-height: 1.85;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
  }
  .pp-section.open .pp-section-body {
    padding: 1.1rem 1.25rem;
    max-height: 600px;
  }
  .pp-section-body p { margin-bottom: .7rem; }
  .pp-section-body p:last-child { margin-bottom: 0; }

  /* List */
  .pp-list { list-style: none; margin: .6rem 0; }
  .pp-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--bg);
    font-size: 14px;
    line-height: 1.7;
  }
  .pp-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .pp-list li::before {
    content: "";
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
    opacity: .7;
  }

  /* Alert boxes */
  .pp-alert {
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    margin: .85rem 0;
    font-size: 13.5px;
    line-height: 1.75;
    display: flex; gap: 10px; align-items: flex-start;
  }
  .pp-alert-icon { flex-shrink: 0; margin-top: 2px; }
  .pp-alert-icon svg { width: 16px; height: 16px; }
  .pp-alert.warning { background: var(--warning-light); color: var(--warning); border-right: 3px solid var(--warning); }
  .pp-alert.info    { background: var(--primary-light);  color: var(--primary-dark); border-right: 3px solid var(--primary); }
  .pp-alert.success { background: var(--success-light); color: var(--success); border-right: 3px solid var(--success); }

  /* Contact */
  .pp-contact {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: .75rem;
  }
  .pp-contact-icon {
    width: 40px; height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pp-contact-icon svg { width: 18px; height: 18px; color: var(--primary); }
  .pp-contact label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 3px; }
  .pp-contact span { font-size: 14px; font-weight: 600; color: var(--primary); }

  /* Footer */
  .pp-footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    line-height: 1.8;
  }

  @media (max-width: 540px) {
    .pp-toc-grid { grid-template-columns: 1fr; }
    .pp-hero-inner { flex-direction: column; }
    .pp-hero h1 { font-size: 19px; }
  }/* End custom CSS */