/*
 * Aboutpagina – redesign in lijn met contactpagina
 * Rustige gradient, één accentkleur (groen), duidelijke typografie
 */

.about-page-wrap {
  background: linear-gradient(180deg, #f0f4f8 0%, #fff 10rem);
  min-height: 50vh;
  padding-bottom: 4rem;
}

/* Hero */
.about-hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.about-hero__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #59ab6e !important;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #59ab6e;
  display: inline-block;
}
.about-hero__lead {
  font-size: 1.1rem;
  color: #495057;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Wie wij zijn – groene header */
.about-wie-block {
  background-color: #59ab6e;
  color: #fff !important;
  padding: 3rem 0;
}
.about-wie-block,
.about-wie-block .col-lg-8,
.about-wie-block p,
.about-wie-block h2 {
  color: #fff !important;
}
.about-wie-block__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.about-wie-block__text {
  font-size: 1rem;
  color: #fff !important;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 42rem;
  opacity: 1;
}
.about-wie-block__text--last {
  margin-bottom: 0;
}
.about-wie-block__icon {
  font-size: 5rem;
  opacity: 0.9;
  color: #fff !important;
}

/* Secties */
.about-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.about-section--alt {
  background-color: #e9eef5;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-content-block {
  max-width: 42rem;
}
.about-section__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #59ab6e !important;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #59ab6e;
  display: inline-block;
}
.about-page-wrap .about-section__title {
  color: #59ab6e !important;
}
.about-section__title--center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.about-section__text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-section__text--last {
  margin-bottom: 0;
}
.about-section__text--intro {
  margin-bottom: 1.5rem;
}

/* Waarden-grid: 4 kaarten – gebruik volledige breedte van de container */
.about-values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 576px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.about-value-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  align-items: start;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 0;
}
.about-value-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.about-value-card__title {
  grid-column: 1;
  grid-row: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #212934;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.about-value-card__desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.about-value-card__icon {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: #e8f5e9;
  color: #59ab6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Waarom bij ons: lijst met iconen (zoals contact) */
.about-reasons-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  max-width: 42rem;
}
.about-reasons-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
.about-reasons-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.about-reasons-list__icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  background: #e8f5e9;
  color: #59ab6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.about-reasons-list__title {
  font-size: 1rem;
  color: #212934;
  display: block;
  margin-bottom: 0.2rem;
}
.about-reasons-list__desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

/* CTA-kaart */
.about-cta-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 2rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 42rem;
  margin: 0 auto;
}
.about-cta-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #59ab6e !important;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #59ab6e;
  display: inline-block;
}
.about-cta-card__text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-cta-card__actions .btn-success {
  background: #59ab6e;
  border-color: #59ab6e;
  color: #fff;
}
.about-cta-card__actions .btn-success:hover {
  background: #4a9a5e;
  border-color: #4a9a5e;
  color: #fff;
}
.about-cta-card__actions .btn-outline-success {
  color: #59ab6e;
  border-color: #59ab6e;
}
.about-cta-card__actions .btn-outline-success:hover {
  background: #59ab6e;
  border-color: #59ab6e;
  color: #fff;
}

@media (max-width: 767px) {
  .about-hero__title {
    font-size: 1.75rem;
  }
  .about-hero__lead {
    font-size: 1rem;
  }
  .about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .about-section--alt {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .about-cta-card {
    padding: 1.5rem;
  }
}
