body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #000;
  }
  
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8rem;
    border-bottom: 1px solid #ddd;
  }
  
  .logo {
    font-weight: bold;
    color: #008743;
  }
  
  .logo img {
    height: 50px;
    width: auto;
    display: block;
  }
  
  nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #000;
    position: relative;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #006432;
  }
  
  nav a:not(.lang)::after {
    content: "↓";
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  nav a:not(.lang):hover::after {
    transform: rotate(-180deg);
  }
  
  nav a.lang {
    font-weight: bold;
  }
  .hero {
    display: flex;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text {
    max-width: 500px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-text ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .hero-text li {
    margin: 0.5rem 0;
  }
  
  .hero-text a {
    text-decoration: underline;
    color: #008743;
    transition: color 0.3s ease;
  }

  .hero-text a:hover {
    color: #006432;
  }
  
  .cta-button {
    background-color: #008743;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #006432;
  }
  
  .hero-image img {
    height: auto;
    border-radius: 15px;
    max-width: 90%;
  }
  
  .features {
    background-color: #eaf8ef;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    text-align: center;
  }
  
  .features ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-left: 0;
    justify-content: center;
  }
  
  .simulatie {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
  
  .simulatie-button {
    background-color: #008743;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
  }

  .simulatie-button:hover {
    background-color: #006432;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }