.feature-section {
  padding-top: 160px;
  display: flex;
  justify-content: center;
  margin-left: 104px;
  margin-right: 104px;
}

/* كونتينر بعرض وطول مضبوط وبدون padding */
.feature-main-container.reversed {
  background-color: #0606061A;
  width: 1304px;
  height: 508px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  /* مهم جداً */
  gap: 0;
}

/* الفيديو */
.feature-video {
  width: 610px;
  height: 100%;
  /* يعني 508 */
  padding: 0;
}

.feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* النص */
.feature-text-container {
  width: 598px;
  height: 100%;
  /* نفس طول الكونتينر */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* توسيط عمودي */
  padding: 0 24px;
  box-sizing: border-box;
  gap: 24px;
}

.feature-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
  width: 100%;
}

.feature-paragraph p {
  width: 598px;
  height: 170px;
  font-size: 25px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
  width: 100%;
}

/* تأكيد عرض السكشن */
.feature-section {
  display: flex !important;
}

@media (max-width: 768px) {
  .feature-section {
    padding-top: 32px !important;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow-x: hidden !important;

  }

  .feature-main-container.reversed {
    width: 393px;
    height: 140px;
    background-color: #0606061A;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 24px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .feature-video {
    width: 181px;
    height: 140px;
    flex-shrink: 0;
  }

  .feature-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  .feature-text-container {
    width: 182px;
    height: 123px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* بدل center */
    gap: 8px;
    padding: 0;
    box-sizing: border-box;
    word-break: break-word;
  }

  .feature-title h2 {
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 15px;
    margin: 0;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }


  .feature-paragraph p {
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    color: #FFFFFF;
    margin: 0;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .feature-paragraph strong {
    font-weight: 700;
    color: #FFFFFF;
  }
}