.cctv-section {
  padding: 40px 0 20px;
}

.cctv-banner {
  background-image: url('../images/fg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  padding: 40px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  color: white;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
}

.cctv-text {
  flex: 1;
  min-width: 260px;
}

.cctv-text h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cctv-text p {
  opacity: 0.9;
  font-size: 1rem;
  max-width: 500px;
}

.cctv-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cctv-feature {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.btn-white-cctv {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  display: inline-block;
}

.btn-white-cctv:hover {
  background: #f0f5f1;
  transform: translateY(-2px);
}