/* Algemene styling */
.pricing-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    padding: 60px 0px 0px 0px;
    color: var(--text-color);
    min-height: auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Zachtere schaduw */
    border: 2px solid white;
    margin: 0;
}

.pricing-swiper-slide
{
    background-position: center;
    background-size: cover;
    width: 300px;
    height: auto;
}

/* Hover effecten */
.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Schaduw wordt dieper */
}

/* Specifieke stijl voor het populaire pakket */
.pricing-card.popular {
    border-color: var(--brand-color);
    /* Populaire kaart heeft al iets meer schaduw standaard */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%); /* Centreer label bovenop */
    background-color: var(--brand-color);
    color: black;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.card-subtitle {
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.card-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #AAA;
}

.check-icon {
    color: var(--brand-color);
    margin-right: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    background: rgba(0, 86, 179, 0.1); /* Licht rondje achter vinkje */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Als je kleur verandert, pas dan ook de rgba hierboven aan of haal background weg */
}

.btn-start {
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
}

.btn-start:hover {
    background-color: var(--brand-color);
    color: #fff; /* Wit tekst op hover */
    transform: scale(1.02); /* Klein plop effectje */
}

/* Tabel onderaan */
.extra-info {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    background: #222;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rates-table {
    width: 100%;
    margin-top: 25px;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0 10px; /* Ruimte tussen rijen */
}

.rates-table td {
    padding: 15px;
    background-color: #0a0a0a;
    border-radius: 8px;
}

.rates-table tr td:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 500;
}

.rates-table tr td:last-child {
    text-align: right;
    font-weight: bold;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: var(--text-color);
}