.cscs-operatives-section {
  background: linear-gradient(135deg, #0f2027, #040c0f, #041116);
  color: #f0f0f0;
  padding: 70px 20px;
  font-family: 'Poppins', sans-serif;
}

.content-wrapper {
  max-width: 960px;
  margin: auto;
  background: #1e1e2f;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: fadeSlideUp 1s ease-out both;
}

.cscs-operatives-section h1 {
  font-size: 32px;
  color: #00eaff;
  margin-bottom: 20px;
  text-align: center;
}

.cscs-operatives-section h1 i {
  color: #00ffc3;
  margin-right: 10px;
}

.intro {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.content-wrapper h2 {
  font-size: 24px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.content-wrapper h2 i {
  color: #ff9f43;
  margin-right: 10px;
}

ul {
  padding-left: 20px;
  list-style: disc;
  color: #d1d1d1;
  font-size: 15px;
  line-height: 1.6;
}

ul li {
  margin-bottom: 10px;
}

a {
  color: #00cfff;
  text-decoration: underline;
  font-weight: 500;
}

a:hover {
  color: #00a6d1;
  text-decoration: none;
}

/* Animation Keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .cscs-operatives-section h1 {
    font-size: 26px;
  }

  .content-wrapper h2 {
    font-size: 20px;
  }

  ul {
    padding-left: 18px;
  }
}
