.projecten {
    background-color: #1e2125;
    color: #e2e8f0;
    padding: 80px 20px;
}

.projecten h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.projecten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project {
    background-color: #2a2e33;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.project p {
    color: #94a3b8;
    margin-bottom: 16px;
}

.project-link {
     color: #4c8eda;
    text-decoration: underline;
    font-weight: 500;
}