/* Algemene stijlen */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #f8f8f8;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #e50914, #111);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Secties */
section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1rem;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #e50914;
}

/* Diensten / Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #111;
}
.card p {
  margin: 0.5rem 0;
  color: #444;
}
.card .desc {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.8rem;
  line-height: 1.4;
}

/* Highlight abonnement */
.card.highlight {
  border: 2px solid #e50914;
  background: #fff4f4;
}
.card.highlight::before {
  content: "Populair";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e50914;
  color: white;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-weight: bold;
}

/* Werkgebied kaart */
.card.info {
  background: #f1f1f1;
  border-left: 5px solid #e50914;
}

/* Waarom kiezen */
ul {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
ul li {
  background: #fff;
  margin: 0.5rem 0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
}
ul li::before {
  content: "✔️";
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

/* FAQ */
.faq p {
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

/* Contact */
.contact {
  background: #111;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  border-top: 4px solid #e50914;
}
.contact h2 {
  color: white;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #e50914;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: #b0060f;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  background: #f1f1f1;
}

/* Animatie voor cards */
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
