/* =========================
   TARIEVEN PAGE
========================= */

.tarieven-page {
    background: #ffffff;
}

/* HERO */
.tarieven-hero {
    padding: 100px 0 40px;
    text-align: center;
}

.tarieven-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.tarieven-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.tarieven-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CONTENT */
.tarieven-content {
    padding: 60px 0 100px;
}

.tarieven-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.tarieven-left h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.tarieven-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.tarieven-features li {
    margin-bottom: 14px;
    font-size: 16px;
    color: #222;
}

.tarieven-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* RIGHT CARD */
.tarieven-card {
    background: #f9f9fb;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.tarieven-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tarieven-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* BUTTON */
.tarieven-btn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #6a2dbf, #7f3bd6);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
    box-shadow: 0 8px 20px rgba(127, 59, 214, 0.25);
}

.tarieven-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(127, 59, 214, 0.35);
}

.tarieven-note {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .tarieven-grid {
        grid-template-columns: 1fr;
    }

    .tarieven-hero h1 {
        font-size: 42px;
    }
}