/* Features Section with List */
.features-section {
    padding: 60px 0;
    background-color: var(--color-blue-logo);
  }
  
  .features-list {
    margin: 10px 0 12px 0;
    padding: 0;
    list-style: none;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    line-height: 1.6; 
  }
  
  .feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-white); 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
  }
  
  .feature-content {
    flex: 1;
    font-size: 1.1rem; 
    font-family: var(--font-body);
    color: var(--color-white);
  }
  
  .features-text h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-white); /* Consistent met h2 kleur */
  }
  
  .features-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .features-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-white); /* Gebruik de donkere kleur i.p.v. hardcoded #444 */
    margin-bottom: 0.5rem;
  }
  
  /* Responsive aanpassingen */
  @media (max-width: 768px) {
    .feature-content {
      font-size: 1rem;
    }
    
    .features-text h1 {
      font-size: 2.25rem;
    }
    
    .features-text h2 {
      font-size: 1.75rem;
    }
    
    .features-text p {
      font-size: 1rem;
    }
  }
/* Basis CSS voor de layout */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Gelijk verdeeld */
    gap: 40px; /* Ruimte tussen afbeelding en tekst */
    align-items: center; /* Centreert verticaal */

  }
  
  .features-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
  }
  
  /* Responsive aanpassingen */
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr; /* Stack op mobiel */
    }
    
    .features-image {
      margin-bottom: 30px; /* Ruimte onder de afbeelding op mobiel */
    }
  }