/* Basis instellingen */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #f8f9fa;
}

a {
  color: #00454F;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover,
a:focus {
  color: #00292F;
  text-decoration: underline;
  outline: none;
}

h1, h2, h3, h4, p {
  margin: 0 0 1em;
  font-family: inherit;
}

/* Zoekformulier */
form.example {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}

form.example input[type="text"] {
  flex: 1 1 auto;
  padding: 15px 20px 15px 45px;
  font-size: 1rem;
  border: 2px solid #E2E2E2;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

form.example button {
  padding: 15px 25px;
  background-color: #00454F;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

form.example button:hover {
  background-color: #00292F;
}

.icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #CECECE;
  pointer-events: none;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 50%;
}

/* FAQ-box */
.faq-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  border: 1px solid #E2E2E2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* .faq-box .ico {
  margin-bottom: 20px;
} */

.faq-box .ico img {
/*   height: 80px; */
  width: 80px;
  object-fit: contain;
}

.faq-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Responsieve layout voor FAQ */
.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.col-lg-6-box {
  flex: 1 1 calc(25% - 40px);
  max-width: calc(25% - 10px);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 1024px) {
  .col-lg-6-box {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 600px) {
  .col-lg-6-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1920px) {
  .col-lg-6-box {
    padding: 20px;
  }
}

@media (min-width: 2560px) {
  .col-lg-6-box {
    padding: 24px;
  }
}

/* Accordion stijl */
.accordion {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion .panel {
  margin-bottom: 16px;
  background: none;
  border: none;
}

.panel-title > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  cursor: pointer;
}

.panel-title > a::after {
  content: '\f106';
  font-family: 'FontAwesome';
  font-size: 1.25em;
  transition: transform 0.3s ease;
}

.panel-title > a.collapsed::after {
  transform: rotate(180deg);
}

.panel-body {
  padding: 10px 0;
}

/* Scroll Offset voor anchor links */
.scrollOffset::before {
  display: block;
  content: "";
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

.autocomplete-suggestions {
  border: 1px solid #E2E2E2;
  background: #fff;
  overflow: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  z-index: 9999;
}

.autocomplete-suggestion {
  padding: 12px 16px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.autocomplete-suggestion:last-child {
  border-bottom: none;
}

.autocomplete-suggestion:hover,
.autocomplete-selected {
  background-color: #f0f0f0;
  color: #00454F;
}

/* Responsive ondersteuning */
@media (max-width: 600px) {
  .autocomplete-suggestions {
    font-size: 0.95rem;
  }
}