.elementor-1906 .elementor-element.elementor-element-442904e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-60632fb */<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>תוכניות שותפים מומלצות</title>
<style>
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2e0249; /* צבע רקע כללי */
    color: #fff;
  }

  /* החלק העליון */
  .hero {
    background: linear-gradient(to bottom, #4a0e4e, #3b0a45);
    padding: 50px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 48px;
    color: #ff9900;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 18px;
    color: #ddd;
  }

  /* אזור הקוביות */
  .cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
    background-color: #3b0a45;
  }

  .card {
    background: linear-gradient(145deg, #5a189a, #3b0a45);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .card:hover {
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.5);
    border-color: rgba(255, 221, 0, 0.5);
  }

  .card img {
    width: 60px;
    height: 60px;
  }

  .card h2 {
    color: #ffcc00;
    margin-top: 10px;
  }

  .card p {
    color: #fff;
    font-size: 16px;
  }

  .card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }

  .card ul li {
    margin: 5px 0;
    padding-left: 10px;
    position: relative;
  }

  .card ul li::before {
    content: "•";
    color: #ffcc00;
    position: absolute;
    left: -10px;
  }

  .card a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff9900;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .card a:hover {
    background-color: #ffcc00;
  }
</style>
</head>
<body>

<div class="hero">
  <h1>תוכניות שותפים מומלצות</h1>
  <p>גלה את ההזדמנויות הטובות ביותר להרוויח כסף באינטרנט עם תוכניות השותפים המשתלמות והמוכחות</p>
</div>

<div class="cards">
  <div class="card">
    <img src="https://upload.wikimedia.org/wikipedia/commons/2/20/Aliexpress_logo.svg" alt="AliExpress Logo">
    <h2>AliExpress</h2>
    <p>עד <strong>8%</strong> החזר</p>
    <p>פלטפורמת מסחר אלקטרוני עולמית עם מחירים תחרותיים ומגוון עצום</p>
    <ul>
      <li>מחירים נמוכים</li>
      <li>משלוח עולמי</li>
      <li>מגוון ענק</li>
    </ul>
    <a href="#">הצטרף עכשיו</a>
  </div>
</div>

</body>
</html>/* End custom CSS */