.html {
  scroll-behavior: smooth;
  overflow: hidden
}
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #141414;
  color: #222;
  line-height: 1.6;
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url("../img/background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  margin-left: 5%;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content span {
  color: #1e9c94;;
}

.hero-content p {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
}

.cta-button {
  background-color: #1e9c94;;
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #1e9c94;
  transform: scale(1.05);
}

.cta-button.dark {
  background-color: #1e9c94;
  color: #fff;
}

.cta-button.dark:hover {
  background-color: #15736c;
}

/* ---------- STATS ---------- */
.stats {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: #16232f; 
}
/* Inhoud */
.stats-container {
  position: relative;
  z-index: 3;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem;
}

/* Bovenste iconen */
.stats-top {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.stats-top img {
  height: 50px;
  filter: brightness(0) invert(1); /* maakt wit */
}

.stats-top h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.5rem;
}




/* ---------- HELP SECTION ---------- */
.help-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5rem 8%;
  background: #1a1a1a;
  gap: 3rem;
}

.help-text {
  flex: 1;
  color: #ffffff;
}

.help-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e9c94;
}
.help-text h3{
  color: #1e9c94;
}
.help-text p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}
.help-text strong {
  color: #1e9c94;
  font-weight: 500;
}
.help-image {
  flex: 1;
  text-align: center;
}

.help-image img {
  width: 110%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer span {
  color: #1e9c94;;
  font-weight: 600;
}
