body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.diensten {
    padding: 60px 20px;
    background-color: #ffffff;
}

.diensten h2 {
    text-align: center;
    font-size: 32px;
    color: #001F3F;
    margin-bottom: 20px;
}

.diensten p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dienst {
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.dienst:hover {
    transform: translateY(-5px);
}

.dienst img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dienst h3 {
    font-size: 20px;
    color: #001F3F;
    margin: 15px 0;
}

.dienst p {
    font-size: 14px;
    color: #555;
    margin: 10px 20px;
}

.dienst .price {
    font-size: 16px;
    color: #001F3F;
    font-weight: bold;
    margin: 10px 0;
}

.dienst .cta-button {
    display: inline-block;
    background-color: #001F3F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.dienst .cta-button:hover {
    background-color: #0056b3;
}