#sp-header-topbar a {
    color: #444444;
}

#sp-header-topbar .sp-contact-info {
    color: #444444;
}

@media (max-width: 576px) {
    .logo-image-phone {
        height: 36px;
        margin-bottom: 15px;
    }
}

/* === Desktop layout === */
.bur-service-wrapper {
  width: 100%;
  height: 600px;
  background-image: url('images/default.jpg');
  background-size: cover;
  background-position: center;
  transition: background-image 0.4s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.industry-row {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
  align-items: center;
  margin: 0;
  padding: 0;
}

.industry-card {
  flex: 1;
  height: 90%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
  color: #fff;
  border-radius: 0;
}

.industry-card:hover {
  background: rgba(0, 0, 0, 0.6);
}

.industry-content {
  max-width: 90%;
}

.industry-icon {
  margin-bottom: 30px;
}

.industry-icon i {
  color: white;
  font-size: 2rem;
}

.industry-card h3 {
  margin: 0 0 30px;
  font-size: 1.5rem; /* 24px */
}

.industry-card p {
  margin: 0;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
}

/* === Tablet (max-width: 991px) === */
@media (max-width: 991px) {
  .bur-service-wrapper {
    height: auto;
    padding: 20px 0;
  }

  .industry-row {
    flex-direction: column;
    gap: 10px;
  }

  .industry-card {
    flex: 1 1 100%;
    width: 100%;
    height: 200px;
    padding: 15px;
  }

  .industry-icon {
    margin-bottom: 20px;
  }

  .industry-icon i {
    font-size: 1.6rem;
  }

  .industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .industry-card p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  /* Zorg dat de rij flexibel kolomsgewijs werkt */
  .industry-row {
    display: flex;
    flex-direction: column;
    gap: 12px;   /* ruimte tussen kaarten */
    width: 100%;
    padding: 0 10px;  /* ruimte aan zijkant zodat content niet tegen rand kleeft */
    box-sizing: border-box;
  }

  .industry-card {
    width: 100%;
    height: auto;          /* verwijdert vaste hoogte */
    min-height: 160px;     /* optioneel: minimale hoogte als dat visueel gewenst is */
    padding: 16px;         /* binnenruimte, zodat tekst niet klem komt te zitten */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* voorkom horizontaal centreergedrag als dat onhandig is */
    overflow: hidden;      /* voorkomt dat delen van content buiten kaart vallen bij tekst-overflow */
  }

  .industry-icon i {
    font-size: 1.4rem;     /* iets grotere icons, maar niet uit proportie */
    margin-bottom: 12px;   /* ruimte tussen icoon en titel */
  }

  .industry-card h3 {
    font-size: 1.1rem;
    margin: 0 0 12px;      /* titel goed gescheiden van de rest */
    word-break: break-word;
  }

  .industry-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    word-break: break-word; /* voorkomt dat lange woorden de layout breken */
  }
}

