/* =============================== */
/* 🔗 LINKS PAGINA – BASIS         */
/* =============================== */

.links-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f0ff;
  border-left: 5px solid #6a4da6;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  font-family: 'Quicksand', sans-serif;
  color: #333;
  line-height: 1.6;
}

.links-container h2 {
  color: #4b0082;
  font-size: 1.8em;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e6e6fa;
  padding-bottom: 0.4rem;
}

/* =============================== */
/* 🔗 LINK LIJST                   */
/* =============================== */

.links-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.links-list li {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.links-list li::before {
  content: "👉";
  position: absolute;
  left: 0;
  color: #ffa500;
  font-size: 1.2em;
}

.links-list a {
  color: #4b0082;
  font-weight: bold;
  text-decoration: none;
}

.links-list a:hover {
  text-decoration: underline;
}

/* =============================== */
/* 📱 RESPONSIVE LINKS PAGINA      */
/* =============================== */

@media (max-width: 768px) {
  .links-container {
    padding: 1.5rem;
  }

  .links-list li {
    padding-left: 1.2rem;
  }
}
