body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #4a154b;
  }

  section {
    padding: 60px 20px;
    text-align: center;
  }

  .section-header {
    background: #f1c40f;
    color: #4a154b;
    font-size: 26px;
    font-weight: bold;
    padding: 15px;
  }

  .hosting-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .hosting-text {
    max-width: 500px;
    text-align: right;
  }

  .hosting-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #4a154b;
  }

  .hosting-text p {
    font-size: 21px !important;
    line-height: 1.8;
  }

  .hosting-img img {
    max-width: 350px;
    width: 100%;
  }

  .btn-hosting {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background: #f1c40f;
    color: #4a154b;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }

  .btn-hosting:hover {
    background: #d4ac0d;
  }

  /* جدول الباقات */
  .pricing {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .plan {
    background: #fdfdfd;
    border: 2px solid #f1c40f;
    border-radius: 15px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .plan:hover {
    transform: translateY(-10px);
  }

  .plan h3 {
    color: #4a154b;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .plan p {
    font-size: 20px;
    margin: 10px 0;
  }

  .price {
    font-size: 24px;
    font-weight: bold;
    color: #f1c40f;
    margin: 20px 0;
  }

  .btn-plan {
    display: inline-block;
    padding: 10px 20px;
    background: #4a154b;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .btn-plan:hover {
    background: #6d1e6d;
  }

  @media (max-width: 768px) {
    .hosting-container {
      flex-direction: column;
      text-align: center;
    }
    .hosting-text {
      text-align: center;
    }
  }