
        .kvk-profile {
            display: flex;
            align-items: flex-start; /* Align items at top */
            gap: 25px; /* Space between image and text */
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .kvk-profile img {
            flex: 0 0 auto; /* Don't grow or shrink */
            width: 300px;
            height: 350px;
            object-fit: cover; /* Crop image to fit dimensions */
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .profile-content {
            flex: 1; /* Take remaining space */
        }
        
        .profile-content h3 {
            color: #2c5f2d; /* Agriculture green theme */
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        .profile-content p {
            line-height: 1.6;
            color: #333;
            margin-bottom: 15px;
        }
        
        /* Make responsive for mobile */
        @media (max-width: 400px) {
            .kvk-profile {
                flex-direction: column;
            }
            
            .kvk-profile img {
                width: 100%;
                height: 100%;
            }
        }
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.styled-table th {
  background-color: #2e7d32; /* green header */
  color: white;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.styled-table td {
  padding: 8px;
  border: 1px solid #ddd;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.styled-table tbody tr:hover {
  background-color: #e8f5e9;
}
.accordion {
  max-width: 600px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.year-btn {
  width: 100%;
  background-color: #2e7d32;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  text-align: left;
  cursor: pointer;
}

.year-btn:hover {
  background-color: #1b5e20;
}

.year-content {
  display: none;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.year-content ul {
  margin: 0;
  padding-left: 20px;
}

