@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      padding: 24px 14px;
      color: #102822;
      font-family: "Tajawal", Arial, sans-serif;
      background:
        radial-gradient(circle at 12% 8%, rgba(189, 230, 206, 0.62), transparent 24rem),
        linear-gradient(180deg, #f5faf7 0%, #edf5f1 100%);
    }

    .page {
      width: min(100%, 560px);
      margin: 0 auto;
    }

    .header {
      position: relative;
      padding: 24px 20px 50px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(145deg, #071f1b 0%, #0b493d 72%, #12604f 100%);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(5, 40, 32, 0.14);
    }

    .header::after {
      position: absolute;
      bottom: -70px;
      left: -50px;
      width: 180px;
      height: 180px;
      content: "";
      background: rgba(216, 179, 106, 0.08);
      border: 1px solid rgba(216, 179, 106, 0.15);
      border-radius: 50%;
    }

    .top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 24px;
    }

    .logo {
      display: block;
      width: 180px;
      height: auto;
      margin-right: -10px;
    }

    .back {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 11px;
      color: #bde6ce;
      font-size: 11px;
      font-weight: 700;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
    }

    .back svg {
      width: 15px;
      height: 15px;
    }

    h1 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 28px;
      line-height: 1.4;
    }

    .intro {
      position: relative;
      z-index: 2;
      margin: -28px 10px 0;
      padding: 20px;
      color: #536a64;
      font-size: 13px;
      line-height: 2;
      background: #fff;
      border: 1px solid #e1ebe6;
      border-radius: 20px;
      box-shadow: 0 18px 45px rgba(5, 40, 32, 0.12);
    }

    .sections {
      display: grid;
      gap: 10px;
      padding: 16px 10px 24px;
    }

    .section {
      padding: 18px;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(11, 64, 54, 0.08);
      border-radius: 18px;
    }

    .section h2 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 7px;
      color: #0b4036;
      font-size: 15px;
    }

    .section h2::before {
      width: 7px;
      height: 7px;
      content: "";
      background: #d8b36a;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(216, 179, 106, 0.14);
    }

    .section p {
      margin: 0;
      color: #677b76;
      font-size: 12px;
      line-height: 2;
    }

    footer {
      padding-bottom: 12px;
      color: #83948f;
      font-size: 10px;
      text-align: center;
    }
