.service-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -20px;
  height: 420px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #3a3a3a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-hero img {
  width: 100%;
  max-width: 960px;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.service-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  text-align: center;
  z-index: 2;
}
.service-hero-overlay h1 {
  color: white;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin: 0 0 6px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.service-hero-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  margin: 0;
  font-family: 'Lato', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.service-intro {
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: #444;
}
.service-intro h1 {
  text-align: center;
  color: #f40000;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  margin-bottom: 15px;
  margin-top: 25px;
}
.service-intro h2 {
  text-align: center;
  color: #f40000;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 15px;
}
.service-intro p {
  margin-bottom: 12px;
}
.service-intro strong {
  color: #333;
}

.service-cta {
  text-align: center;
  margin: 40px 0 10px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f40000 0%, #cc0000 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.service-cta h2 {
  color: white;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 10px;
}
.service-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-family: 'Lato', sans-serif;
  margin-bottom: 15px;
}
.service-cta a {
  display: inline-block;
  background: white;
  color: #f40000;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.service-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 960px) {
  .service-hero img {
    max-width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
@media (max-width: 768px) {
  .service-hero {
    height: 280px;
  }
  .service-hero-overlay {
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  }
}

.competence-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.competence-card {
    background: white;
    border-radius: 8px;
    border-left: 4px solid #f40000;
    padding: 20px 24px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.competence-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.competence-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #f40000;
    margin-top: 2px;
}
.competence-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.competence-card-content h3 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #333;
    margin: 0 0 6px 0;
    font-weight: 700;
}
.competence-card-content p {
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    color: #666;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .competence-card {
        padding: 16px;
        gap: 12px;
    }
}
