/* Stijlen voor de tarievenpagina */
.pricing {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.6;
}

.pricing h2 {
    font-size: 1.8em;
    color: #2eced5;
    margin-bottom: 10px;
}

.pricing p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-table th {
    background-color: #2eced5;
    color: white;
    font-weight: bold;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tr:hover {
    background-color: #f1f1f1;
}

.price-table td {
    font-size: 1em;
}
