 
  * { box-sizing: border-box; }
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Cairo', sans-serif;
    background: #f5f5f5;
    color: #222;
  }

  /* Hero wrapper مركزي */
  .hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  /* Hero صندوق */
  .hero {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 85%; /* تم زيادة العرض قليلًا */
    width: 85%;
    padding: 40px;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
	 
  min-height: 600px;  
}


   

  /* اللوجو داخل الهيرو */
  .logo {
    position: absolute;
    top: 20px;
    right: 40px;
  }
  .logo img {
    max-width: 300px;
  }

  /* النص */
  .hero-text {
    flex: 1;
    text-align: right;
    min-width: 250px;
	padding-right: 5%;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 1.3;
    margin: 0 0 20px;
	    color: #035e76;
  }

  /* زر */
  .action-button {
    margin-top: 20px;
  }
  .button {
    display: inline-block;
    background: #006837;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
  }
  .button:hover {
    background: #004d29;
  }

  /* صورة الكتاب */
  .hero-image {
    flex: 0 0 350px;
    max-width: 350px;
    min-width: 450px;
    text-align: left;
  }
  .hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  /* Responsive للجوال */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      padding: 30px 20px;
    }
    .logo {
      position: static; /* يصبح جزء من الهيرو */
      margin-bottom: 20px;
      text-align: center;
    }
    .hero-text {
      text-align: center;
    }
    .hero-text h1 {
      font-size: 26px;
    }
    .hero-image {
      max-width: 250px;
      margin-bottom: 20px;
    }
  }
 
