.section-with-bg {
    position: relative;
    width: 100%;
    min-height: 120vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom:20px;
  }
  
  .section-with-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .section-with-bg .text-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    width: 100%;
    font-size: 18px;
    line-height: 1.4;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* ✅ استجابة على الشاشات الصغيرة */
  @media (max-width: 768px) {
    .section-with-bg {
      min-height: 100vh;
      padding: 40px 15px;
    }
  
    .section-with-bg .text-overlay {
      font-size: 16px;
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .section-with-bg .text-overlay {
      font-size: 15px;
      line-height: 1.6;
    }
  }
  