/* IT Services Section */
.it-services-section {
  padding: 150px 0 0px 0;
  background: #fff;
}

.it-services-section .container {
  max-width: 1400px;
  /* padding: 0 40px; */
}

/* Sehr breite Bildschirme (über 1920px) */
@media screen and (min-width: 1921px) {
  .it-services-section .container {
    max-width: 1550px;
  }
}

/* Header - Zentriert wie bei Leistungen */
.it-services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.it-services-header .subtitle {
  margin-bottom: 16px;
  color: #0088a2;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.it-services-header h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2030;
  margin: 0 0 20px 0;
}

.it-services-header p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Service Cards - 3 Spalten */
.it-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.it-service-card {
  background: #fff;
  padding: 2.1em;
  text-align: left;
  border: 1px solid #f5f5f5;
  border-radius: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0);
}

.it-service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
  border-color: #e0e0e0 !important;
}

.it-service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.it-service-icon.icon-beratung {
  background-image: url('../img/icons/lamp.png');
}

.it-service-icon.icon-monitoring {
  background-image: url('../img/icons/monitoring.svg');
}

.it-service-icon.icon-backup {
  background-image: url('../img/icons/backup.svg');
}

.it-service-icon svg {
  width: 100%;
  height: 100%;
  color: #0088a2;
}

.it-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2030;
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.it-service-card:hover h3 {
  background: linear-gradient(135deg, #00a0c8, #0088a2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.it-service-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 20px 0;
}

.service-link-simple {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #0088a2;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-link-simple:hover {
  transform: translateX(4px);
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .it-services-section .container {
    padding: 0 30px;
  }
  
  .it-services-header {
    gap: 60px;
  }
}

@media screen and (max-width: 992px) {
  .it-services-section {
    padding: 80px 0;
  }
  
  .it-services-header {
    margin-bottom: 60px;
  }
  
  .it-services-header h3 {
    font-size: 30px;
  }
  
  .it-services-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .it-services-section {
    padding: 60px 0;
  }
  
  .it-services-section .container {
    padding: 0 25px;
  }
  
  .it-services-header {
    margin-bottom: 50px;
  }
  
  .it-services-header h3 {
    font-size: 26px;
  }
  
  .it-services-header p {
    font-size: 15px;
  }
  
  .it-service-card h3 {
    font-size: 20px;
  }
}

