.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-bottom: 5rem;
}

.faq-section h2 {
  font-family: "Montserrat Bold";
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.faq-item {
  background: #008743;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: background 0.3s;
  height: fit-content;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: "Montserrat Bold";
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  line-height: 1.4;
}

.faq-answer {
  display: none;
  background: #CEF7E2;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  animation: fadeIn 0.3s;
  color: #333;
  font-family: "Montserrat Regular";
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open {
  background: #CEF7E2;
}

.faq-item.open .faq-question {
  color: #333;
  padding-bottom: 1rem;
}

.faq-answer hr {
  border: none;
  border-top: 2px solid #008743;
  margin: 0 0 1rem 0;
}

.faq-answer p {
  padding: 0;
  margin: 0;
  text-align: justify;
  line-height: 1.8;
}

.faq-icon {
  font-size: 2rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.content-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-content {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 0;
  text-align: justify;
  line-height: 1.6;
}

.hero-content p {
  margin-bottom: 1.5rem;
  font-family: "Montserrat Regular";
  color: #333;
}

.hero-image {
  width: 52%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
  box-shadow: none;
  display: block;
  margin: 0 0 0 auto;
}

.circle-button {
  position: absolute;
  bottom: 0px;
  right: -50px;
  width: 160px;
  height: 160px;
  background-color: #654E6F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s;
  border: 5px solid white;
  z-index: 10;
  box-shadow: none;
}

.circle-button-inner {
  color: white;
  padding: 0.5rem;
  max-width: 90%;
}

.circle-button-inner p {
  font-family: "Montserrat Bold";
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
  /* Navbar spacing */
  #navbar {
    margin-bottom: 3rem;
  }

  /* Main content aanpassingen */
  .content-container {
    flex-direction: column;
    padding: 1rem;
    gap: 2rem;
    margin-bottom: 100px;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2rem;
    text-align: left;
  }

  .hero-content p {
    text-align: left;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }

  .circle-button {
    position: absolute;
    bottom: -80px;
    right: 50%;
    transform: translateX(50%) rotate(0deg);
    margin: 0;
    width: 140px;
    height: 140px;
  }

  .circle-button:hover {
    transform: translateX(50%) scale(1.05);
  }

  /* FAQ sectie aanpassingen */
  .faq-section {
    padding: 1rem;
    margin-top: 4rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-question {
    font-size: 1.2rem;
    padding: 1.2rem;
  }
}

@media (max-width: 600px) {
  /* Extra spacing voor kleinere schermen */
  #navbar {
    margin-bottom: 2rem;
  }

  .content-container {
    margin-bottom: 120px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .hero-image img {
    max-width: 100%;
  }

  .circle-button {
    width: 130px;
    height: 130px;
    bottom: -65px;
  }

  .circle-button-inner {
    padding: 0.3rem;
  }

  .circle-button-inner p {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  /* FAQ sectie aanpassingen voor kleinere schermen */
  .faq-section {
    margin-top: 3rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
