 
    body {
      font-family: Arial, sans-serif;
      background: #fff8f0;
      color: #333;
      padding: 30px;
    }
    h1 {
      color: #e67e22;
      text-align: center;
    }
    .content {
      max-width: 900px;
      margin: auto;
      background: #ffffff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
    }
    h2 {
      color: #d35400;
      margin-top: 30px;
    }
    p {
      line-height: 1.8;
      margin-bottom: 15px;
    }
    ul {
      padding-left: 20px;
    }
    li {
      margin-bottom: 10px;
    }
    iframe {
      width: 100%;
      height: 400px;
      border: none;
      margin-top: 30px;
      border-radius: 10px;
    }
    /* ✅ السهم ديال الرجوع */
    .back-arrow {
      position: fixed;
      top: 20px;
      right: 20px;
      background-color: #ff9800;
      color: white;
      font-size: 28px;
      padding: 12px 16px;
      border-radius: 50%;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .back-arrow:hover {
      background-color: #e65100;
      transform: scale(1.1);
    }
    