.camera-section {
  display: flex;
  justify-content: center;
  background-color: #0F1626;
  padding-top: 160px;
  padding-bottom: 160px;
}

.camera-card {
  width: 1328px;
  height: 508px;
  display: flex;
  background: linear-gradient(90deg,
      rgba(0, 255, 232, 0.05) 0%,
      rgba(6, 6, 6, 0.9) 100%);
  box-sizing: border-box;
  gap: 16px;
}

.camera-image {
  width: 649px;
  height: 100%;
}

.camera-image img {
  width: 649px;
  height: 508px;
  object-fit: cover;
}

.camera-content {
  padding-top: 154.5px;
  padding-bottom: 154.5px;
  padding-left: 57px;
  width: 598px;
  height: 199px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.camera-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
}

.camera-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 440px) {
  .camera-section {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 20px 8px !important; /* توحيد مع Intrusion */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: none !important;
    overflow-x: hidden !important;
  }
  
  .camera-card {
    width: 100% !important;
    height: auto !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important; /* توحيد مع Intrusion */
    background: none !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    padding: 15px 8px !important; /* توحيد مع Intrusion */
    gap: 15px !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .camera-image {
    width: 120px !important;
    height: 120px !important;
    flex: 0 0 120px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin-right: 6px !important; /* تقليل المسافة بين الصورة والنص */
    box-shadow: none !important;
    border: none !important;
    background: none !important;
  }
  
  .camera-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
  }

  .camera-image:hover img {
    transform: scale(1.05) !important;
  }
  
  .camera-content {
    flex: 1 !important;
    padding: 0 10px !important; /* توحيد مع Intrusion */
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 120px !important;
  }
  
  .camera-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important; /* مسافة محسنة */
    color: #ffffff !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }
  
  .camera-text {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #cccccc !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.6 !important; /* تحسين قراءة النص */
    width: 100% !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block !important;
    white-space: normal !important;
    padding: 0 !important; /* إزالة padding الزائد */
    word-break: keep-all !important; /* منع تكسير الكلمة */
  }
}