.section-it-services {
  background: #264065;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  margin: 0 auto;
}

.section-it-services h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  color: #ffffff;
}

.section-it-services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00d2ff, #38bdf8);
  margin: 1rem auto 0;
  border-radius: 4px;
}

.section-it-services p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 1.5rem auto;
  max-width: 860px;
  color: #e4eaf1;
}

.section-it-services strong {
  color: #00d2ff;
  font-weight: 700;
}

/* Subheadline with Icon */
.section-it-services h3.subheadline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 2.5rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-it-services h3.subheadline span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  font-size: 1.1rem;
}

/* CTA */
.section-it-services .cta-wrapper {
  margin-top: 2rem;
}

.section-it-services .cta-wrapper p {
  font-size: 1.1rem;
  color: #00d2ff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-it-services .cta-button {
   display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #264065, #00d2ff);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(38, 64, 101, 0.3);
  transition: all 0.3s ease;
}

.section-it-services .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.35);
  background: linear-gradient(135deg, #38bdf8, #00d2ff);
}

.section-it-services .cta-button i {
  font-size: 2rem;
}