/* Verbeterde en meer aantrekkelijke stijl voor de FAQ-pagina */

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #f4f8fb;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

/* FAQ-sectie */
.faq-section {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  padding: 25px;
  overflow: hidden;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: #ffffff;
}

.faq-item:hover {
  background-color: #f0f9ff;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #1d3557;
}

.faq-item p {
  margin: 0;
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
}

.faq-item a {
  color: #1d87e4;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed #1d87e4;
  transition: color 0.3s ease;
}

.faq-item a:hover {
  color: #0056b3;
  border-bottom: 1px solid #0056b3;
}

/* Overgangsanimaties voor elementen */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  animation: fadeIn 1s ease;
}
