 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Tajawal', sans-serif;
      background-color: #f4f7f6;
      color: #1e2a3a;
      display: flex;
      justify-content: center;
      padding: 5px;
      min-height: 100vh;
    }
    .container {
      max-width: 720px;
      width: 100%;
      background-color: #ffffff;
      border-radius: 28px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      transition: all 0.2s;
    }
 
    /* طبقة شفافة خفيفة لتحسين قراءة النص فوق الخلفية */
 
 


 
    .content-body {
      padding: 20px 20px 28px 20px;
    }
    .section-title {
      text-align: center;
      color: #1b7a37;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 26px 0 18px 0;
      position: relative;
    }
    .section-title::before,
    .section-title::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 22%;
      height: 2px;
      background: linear-gradient(to left, #b8d9b0, transparent);
    }
    .section-title::before {
      right: 0;
    }
    .section-title::after {
      left: 0;
      background: linear-gradient(to right, #b8d9b0, transparent);
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 18px;
    }
    .grid-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #fafcfa;
      padding: 12px 6px;
      border-radius: 20px;
      transition: background 0.2s;
    }
    .grid-item:hover {
      background: #f0f7ef;
    }
    .icon-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #1f8a3e;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      color: white;
      font-size: 26px;
      box-shadow: 0 6px 14px rgba(32, 138, 62, 0.18);
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .grid-item:hover .icon-circle {
      transform: scale(1.05);
    }
    .grid-item h4 {
      font-size: 0.95rem;
      color: #1a5a2a;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .grid-item p {
      font-size: 0.78rem;
      color: #3a4a3a;
      line-height: 1.5;
      max-width: 160px;
    }
    .requirements-box {
      background: #f4faf2;
      border-radius: 24px;
      padding: 20px 12px;
      margin-bottom: 18px;
      border: 1px solid #d4e8cc;
    }
    .requirements-box .grid-3 {
      margin-bottom: 0;
    }
    .requirements-box .grid-item {
      background: transparent;
      padding: 4px 2px;
    }
    .requirements-box .grid-item h4 {
      color: #0b2b1a;
      font-size: 0.9rem;
    }
    .requirements-box .icon-circle {
      background: #ffffff;
      color: #1f8a3e;
      border: 2px solid #1f8a3e;
      box-shadow: none;
      width: 54px;
      height: 54px;
      font-size: 24px;
    }
    .requirements-box .grid-item p {
      font-size: 0.72rem;
      color: #2f4232;
    }
    .time-section {
      text-align: center;
      margin-bottom: 18px;
      background: #f8fcf8;
      padding: 16px 12px;
      border-radius: 40px;
      border: 1px dashed #2b8a47;
    }
    .time-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .time-section .icon-circle {
      width: 52px;
      height: 52px;
      font-size: 24px;
      margin-bottom: 0;
      background: #e3f3e1;
      color: #1f8a3e;
      box-shadow: none;
      border: 1px solid #b0d8ae;
    }
    .time-text {
      font-size: 1.2rem;
      color: #0b2b1a;
      font-weight: 700;
    }
    .time-text span {
      color: #1f8a3e;
    }
    .time-sub {
      font-size: 0.85rem;
      color: #4d5f4d;
      margin-top: 2px;
    }
    .steps-section {
      background: #f6fbf7;
      border-radius: 28px;
      padding: 22px 14px 18px;
      margin-bottom: 22px;
      border: 1px solid #dfecda;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: #2b8a47;
      opacity: 0.4;
      z-index: 0;
    }
    .step-item {
      text-align: center;
      position: relative;
      z-index: 1;
      padding-top: 26px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 24px;
      padding-bottom: 8px;
    }
    .step-number {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #1f8a3e;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      margin: 0 auto 10px auto;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(32, 138, 62, 0.25);
    }
    .step-item h4 {
      font-size: 0.9rem;
      color: #14632a;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .step-item p {
      font-size: 0.74rem;
      color: #2c3d2c;
      line-height: 1.5;
      padding: 0 4px;
    }
    .cta-box {
      background: #25d366;
      border-radius: 60px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: white;
      text-decoration: none;
      margin-bottom: 16px;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      width: 100%;
    }
    .cta-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
      background: #20c95c;
    }
    .cta-box span {
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.3px;
    }
    .cta-box svg {
      width: 30px;
      height: 30px;
      fill: white;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
      flex-shrink: 0;
    }
    .footer-note {
      text-align: center;
      font-size: 0.82rem;
      color: #3d4f3d;
      line-height: 1.7;
      background: #f7faf7;
      padding: 16px 14px;
      border-radius: 30px;
      border: 1px solid #dfece0;
    }
    .footer-note .highlight {
      color: #1a7834;
      font-weight: 700;
      display: inline-block;
    }
    @media (max-width: 640px) {
      body { padding: 10px; }
      .container { border-radius: 24px; }
      
      .grid-3 { grid-template-columns: 1fr; gap: 12px; }
      .grid-item { flex-direction: row; gap: 12px; text-align: right; padding: 10px 14px; align-items: center; }
      .grid-item p { max-width: 100%; }
      .icon-circle { margin-bottom: 0; width: 50px; height: 50px; font-size: 22px; flex-shrink: 0; }
      .requirements-box .grid-item { flex-direction: row; }
      .requirements-box .icon-circle { width: 48px; height: 48px; font-size: 20px; }
      .steps-grid { grid-template-columns: 1fr; gap: 16px; }
      .steps-grid::before { display: none; }
      .step-item { padding-top: 6px; display: flex; flex-direction: row; align-items: center; gap: 12px; text-align: right; background: transparent; padding: 6px 4px; }
      .step-number { margin: 0 0 0 8px; width: 30px; height: 30px; font-size: 0.8rem; flex-shrink: 0; }
      .step-item h4 { font-size: 0.85rem; }
      .step-item p { font-size: 0.72rem; }
      .time-content { flex-direction: row; flex-wrap: wrap; justify-content: center; }
      .cta-box { padding: 14px 16px; gap: 10px; }
      .cta-box span { font-size: 1.1rem; }
      .cta-box svg { width: 26px; height: 26px; }
      .section-title::before, .section-title::after { width: 14%; }
    }
    @media (max-width: 400px) {
      .header-text h1 { font-size: 1.7rem; }
      .header-text .sub-title { font-size: 1rem; }
      .header-img { max-width: 270px; }
      .header-img img { max-width: 270px; }
      .grid-item { padding: 8px 10px; }
      .icon-circle { width: 44px; height: 44px; font-size: 20px; }
    }