.elementor-3097 .elementor-element.elementor-element-b7bdbf9{--display:flex;}.elementor-3097 .elementor-element.elementor-element-a0b28dd{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fe995b1 */<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  /* ── Palette extracted from engmahmoudhassan.com ── */
  :root {
    --accent:      #2563eb;   /* blue accent seen in CTAs */
    --accent-dark: #1d4ed8;
    --text:        #111827;
    --text-muted:  #6b7280;
    --text-hint:   #9ca3af;
    --border:      #e5e7eb;
    --bg:          #ffffff;
    --bg-surface:  #f9fafb;
    --radius:      8px;
    --radius-lg:   12px;
  }
 
  body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
  }
 
  /* ── Page wrapper — matches site max-width ── */
  .mh-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
  }
 
  /* ── Hero ── */
  .mh-hero {
    text-align: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
  }
  .mh-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .mh-hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .mh-hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.8;
  }
  .mh-hero-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
  }
  .mh-hero-cta:hover { background: var(--accent-dark); }
 
  /* ── Trust bar ── */
  .mh-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 3.5rem;
  }
  .mh-trust-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
  }
  .mh-trust-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
  }
  .mh-trust-lbl {
    font-size: 13px;
    color: var(--text-muted);
  }
 
  /* ── Section heading ── */
  .mh-section-head {
    text-align: center;
    margin-bottom: 2rem;
  }
  .mh-section-head h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }
  .mh-section-head p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
  }
 
  /* ── Services grid ── */
  .mh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
  }
  .mh-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .mh-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(37,99,235,0.08);
  }
  .mh-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #eff6ff;
  }
  .mh-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
  }
  .mh-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
  }
  .mh-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
  }
  .mh-features {
    list-style: none;
    margin-bottom: 22px;
  }
  .mh-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .mh-features li:last-child { border-bottom: none; }
  .mh-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23eff6ff'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
  }
  .mh-card-btn {
    display: block;
    text-align: center;
    padding: 11px 16px;
    border-radius: var(--radius);
    border: 2px solid var(--accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    margin-top: auto;
  }
  .mh-card-btn:hover {
    background: var(--accent);
    color: #fff;
  }
 
  /* ── Why me ── */
  .mh-why {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .mh-why-left h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
  }
  .mh-why-left p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .mh-why-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .mh-why-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .mh-why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
  }
  .mh-why-point-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
  }
  .mh-why-point-text span {
    font-size: 12px;
    color: var(--text-muted);
  }
 
  /* ── Process ── */
  .mh-process {
    margin-bottom: 4rem;
  }
  .mh-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 2rem;
    position: relative;
  }
  .mh-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }
  .mh-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
  }
  .mh-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
  }
  .mh-step p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }
 
  /* ── CTA ── */
  .mh-cta {
    background: var(--text);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
  }
  .mh-cta h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
  .mh-cta p {
    font-size: 15px;
    color: #9ca3af;
    max-width: 480px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
  }
  .mh-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .mh-btn-white {
    padding: 13px 30px;
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
    border: 2px solid #fff;
  }
  .mh-btn-white:hover { opacity: 0.9; }
  .mh-btn-outline {
    padding: 13px 30px;
    border-radius: var(--radius);
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.15s;
  }
  .mh-btn-outline:hover { border-color: rgba(255,255,255,0.7); }
 
  /* ── Responsive ── */
  @media (max-width: 768px) {
    .mh-hero h1 { font-size: 28px; }
    .mh-trust { grid-template-columns: repeat(3,1fr); gap: 10px; }
    .mh-trust-num { font-size: 20px; }
    .mh-grid { grid-template-columns: 1fr; }
    .mh-why { grid-template-columns: 1fr; }
    .mh-steps { grid-template-columns: 1fr 1fr; }
    .mh-cta-btns { flex-direction: column; align-items: center; }
    .mh-wrap { padding: 2.5rem 1.25rem 3rem; }
  }
  @media (max-width: 480px) {
    .mh-trust { grid-template-columns: 1fr; max-width: 260px; margin-left: auto; margin-right: auto; }
    .mh-steps { grid-template-columns: 1fr; }
  }
</style>/* End custom CSS */