.elementor-1070 .elementor-element.elementor-element-4240ba27{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for container, class: .elementor-element-4240ba27 *//* استهدف فقط محتوى الدورة داخل العنصر الرئيسي .wrap - ولا تمس الهيدر والفوتر */
.wrap {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(34,50,98,0.1);
  font-family: 'Tajawal', sans-serif;
  color: #223262;
  line-height: 1.7;
}

/* العناوين داخل .wrap فقط */
.wrap h1, 
.wrap h2, 
.wrap h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
}
.wrap h1 {
  color: #223262;
  font-size: 2.2rem;
}
.wrap h2 {
  color: #f97316; /* برتقالي */
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 10px;
}
.wrap h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: #f97316;
  border-radius: 3px;
  bottom: 0;
  right: 0;
}
.wrap h3 {
  color: #f97316;
  font-size: 1.3rem;
}

/* الفقرات والقوائم داخل .wrap */
.wrap p,
.wrap ul {
  font-size: 1rem;
  margin-bottom: 18px;
}
.wrap ul {
  list-style: none;
  padding-right: 20px;
}
.wrap ul li {
  position: relative;
  padding-right: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}
.wrap ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  top: 2px;
  color: #13917b; /* أخضر مزرق */
  font-weight: 700;
}

/* الروابط داخل .wrap */
.wrap a {
  color: #13917b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.wrap a:hover {
  color: #ea580c; /* برتقالي داكن */
  text-decoration: underline;
}

/* الصور داخل .wrap */
.wrap .image-container {
  width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(19,145,123,0.2);
  animation: fadeInUp 1s ease forwards;
}
.wrap .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* تحجيم الفيديوهات داخل .wrap - متناسق ومرن */
.wrap iframe {
  width: 100% !important;
  max-width: 900px;
  height: 480px !important;
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(19,145,123,0.15);
  margin: 30px 0;
  animation: fadeInUp 1.2s ease forwards;
}

/* جداول ضمن .wrap */
.wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.wrap table, 
.wrap th, 
.wrap td {
  border: 1px solid #f97316;
}
.wrap th, 
.wrap td {
  padding: 12px 15px;
  text-align: center;
  color: #223262;
  font-weight: 600;
}
.wrap th {
  background-color: #f97316;
  color: #fff;
}

/* صناديق إعلانات ضمن .wrap */
.wrap .adsense-space {
  width: 100%;
  min-height: 90px;
  background: #f97316;
  margin: 40px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* FAQ - جدول داخل .wrap */
.wrap .faq-table {
  width: 100%;
  border-spacing: 0 15px;
  border-collapse: separate;
}
.wrap .faq-question {
  background-color: #13917b;
  color: #fff;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  user-select: none;
}
.wrap .faq-question:hover {
  background-color: #0f6f5a;
}
.wrap .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  font-weight: 400;
  background: #e6f4f1;
  border-radius: 0 0 8px 8px;
  color: #223262;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.wrap .faq-row.active .faq-answer {
  max-height: 300px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* تحريك fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* استجابة الأجهزة - حافظ على تناسق الفيديوهات */
@media (max-width: 1024px) {
  .wrap iframe {
    height: 420px !important;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .wrap h1 {
    font-size: 1.8rem;
  }
  .wrap h2 {
    font-size: 1.3rem;
  }
  .wrap iframe {
    height: 260px !important;
  }
  .wrap {
    padding: 20px 15px;
  }
}/* End custom CSS */