.bedding-blok.over-ons{
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  flex-direction: column;
  background-color:rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: var(--font-body);
  color:  #003366;
  position: relative;
  z-index: 2;
  text-align: left; 
}

.quote-bedding {
  max-width: 600px;
  margin: 2em auto;
  padding: 1.5em;
  background-color: rgba(173, 216, 230, 0.3);
  border-radius: 8px;
  font-style: italic;
  box-sizing: border-box;
}


.lid-quote {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 2em auto;
  background-color: rgba(173, 216, 230, 0.3);
  padding: 1.5em;
  border-radius: 8px;
  font-style: italic;
  line-height: 1.6;
  
}

.quote-author {
  display: block;
  margin-top: 0.5em;
  text-align: right;
  font-style: normal;
  font-weight: 500;
  color: #333;
}


.over-ons h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--kleur-accent-dark);
  margin-bottom: 2rem;
}

.over-ons p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--kleur-tekst);
}

.over-ons ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.over-ons ul li {
  margin-bottom: 0.8rem;
}

.over-ons ul li a {
  font-family: var(--font-body);
  color: var(--kleur-accent);
  text-decoration: none;
  font-weight: 500;
}

.over-ons ul li a:hover {
  color: var(--kleur-accent-dark);
  text-decoration: underline;
}
/* === CTA-knoppen === */

 .knop-cta {
  display: inline-block;
  padding: 6px 16px; 
  background-image: var(--gradient-cta);
  color: var(--kleur-tekst);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: bold;
  border: 2px solid rgba(0, 0, 0, 0.1); /* lichte rand */
  border-radius: 10rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-image 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.knop-cta:hover {
  background-image: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: rgba(0, 0, 0, 0.2); /* iets donkerder bij hover */
}


/*@media naar max-width: 768px*/

@media screen and (max-width: 768px) {
  .over-ons {
    padding: 2rem 1rem;
    border-left: 4px solid var(--kleur-accent);
  }

  .over-ons h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .over-ons p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .over-ons ul li a {
    font-size: 1rem;
  }
  .bedding-blok {
    padding: 2rem 1rem;
    border-left: 4px solid var(--kleur-accent);
  }
}
