body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
}

.balk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
}

.nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    color: #6a6aff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.main-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #0e1b2e;
}

.latest-products {
    background-color: #1b1b1b;
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
}

.latest-products h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.latest-products ul {
    list-style: none;
    padding: 0;
}

.latest-products li {
    background-color: #2a2a2a;
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-products img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.latest-products strong {
    font-size: 0.9rem;
}

.latest-products li div {
    font-size: 0.75rem;
    line-height: 1.2;
}

.midden {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.midden-left img {
    width: 260px;
    max-width: 100%;
}

.midden-right {
    max-width: 500px;
}

.btn {
    background-color: #6a6aff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4a4ae6;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    font-size: 0.9rem;
}

/* Producten website css */
.products-container {
    padding: 1rem;
    background-color: #0e1b2e;
  }
  
  .products-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #ffffff;
  }
  
  /* Rijtje met alle 3: AI + ML + aside */
  .products-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  
  /* AI & ML kaarten */
  .product-card {
    background-color: #1b1b1b;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #eee;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-card img {
    width: 100px;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .product-card h3 {
    margin: 0.3rem 0;
    font-size: 1.1rem;
  }
  
  .product-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .btn.small {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background-color: #6a6aff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
  }
  

  .aside-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 220px; 
  }
  
  .aside-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }



  body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
}

.balk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

/* CONTACT STYLING */
.contact-container {
    padding: 2rem;
    background-color: #0e1b2e;
    color: white;
  }
  
  .contact-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Zet het formulier links */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 320px;
    order: 1; /* Formulier links */
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background-color: #1b1b1b;
    color: white;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button {
    background-color: #6a6aff;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  

  .contact-info {
    background-color: #1b1b1b;
    padding: 1.2rem;
    border-radius: 10px;
    width: 240px;
    order: 2; 
  }
  
  .contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .info-item img {
    width: 20px;
    height: 20px;
  }
  .video-container {
    padding: 2rem;
    background-color: #0e1b2e;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .video-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .video-block {
    text-align: center;
  }
  