.elementor-2476 .elementor-element.elementor-element-262d993{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-96288e5 */.plans-section {
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  padding: 40px 20px;
  direction: rtl;
  color: #333;
}

.plans-header {
  text-align: center;
  margin-bottom: 40px;
}

.plans-header h1 {
  font-size: 2.2rem;
  color: #033c61;
}

.plans-header p {
  font-size: 1.1rem;
  color: #555;
}

.category-section {
  margin-bottom: 50px;
}

.category-section h2 {
  font-size: 1.5rem;
  color: #f39c12;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.category-desc {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ثلاث بطاقات في الصف */
  gap: 20px;
}

.plan-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plan-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  color: #033c61;
}

.cta-section, .back-to-home {
  text-align: center;
  margin-top: 30px;
}

.cta-button, .home-button {
  background-color: #033c61;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover, .home-button:hover {
  background-color: #f39c12;
  color: #fff;
}

/* تحسين عرض الباقات على الأجهزة الصغيرة */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plans-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .plans-header h1 {
    font-size: 1.5rem;
  }

  .plan-card {
    font-size: 1rem;
  }

  .plan-card strong {
    font-size: 1.1rem;
  }

  .cta-button, .home-button {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}/* End custom CSS */