/* Base Reset & Fonts */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* De gevraagde groene achtergrond is hier toegepast */
    background: #59625e;
    color: #333;
    padding: 40px 20px; /* Aangepaste padding */
    min-height: 100vh; /* Aangepaste minimale hoogte */
}

p {
    margin: 10px 0;
}

/* Container & Layout */
.container { max-width: 1200px; margin: 0 auto; }

/* Header & Logo */
.logo { text-align: center; margin-bottom: 20px; }
.logo img { max-width: 250px; height: auto; }

.page-header { text-align: center; margin-bottom: 40px; }
.page-header h1 { font-size: 2.5em; color:  white; margin-bottom: 10px; }
.page-header p { font-size: 1.1em; color: white; max-width: 800px; margin: 0 auto; line-height: 1.5; }

/* Currency Toggle */
.currency-toggle { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.currency-btn {
    padding: 10px 25px;
    border: 2px solid #2a5180;
    background: #b6cf47;
    color: black;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}
.currency-btn.active { background: white; color: black; border: solid 1px grey;}


.currency-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* Cards Grid */
.cards-container {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
        align-items: stretch; /* Zorgt dat kaarten dezelfde HOOGTE krijgen */
        gap: 20px;
}

/* Individual Card */
.card {
    display: grid;
        grid-template-rows: auto 1fr auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid transparent;
    position: relative;
    flex: 1;
}

/* --- Media Query voor Mobiel (Scherm <= 768px) --- */
@media (max-width: 768px) {

    /* 1. Kaarten onder elkaar tonen */
    .cards-container {
        flex-direction: column; /* Stapel de kaarten verticaal */
        gap: 0; /* Verwijder eventuele horizontale gaten */
    }

    /* 2. Kaarten volledige breedte geven */
    .card {
        flex: 0 0 100%; /* Zorg ervoor dat de kaarten de volledige breedte innemen */
        margin-bottom: 20px; /* Voeg ruimte toe tussen de verticaal gestapelde kaarten */
    }
}


.card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

/* Card Colors */
.card.bronze { border-top-color: #cd7f32; }
.card.silver { border-top-color: #95a5a6; }
.card.gold { border-top-color: #f1c40f; border: 2px solid #f1c40f; }

.most-popular {
    position: absolute; top: 0; right: 0; left: 0;
    background: #f1c40f; color: #333; text-align: center;
    font-size: 0.8em; font-weight: bold; padding: 4px;
    border-radius: 10px 10px 0 0; text-transform: uppercase; letter-spacing: 1px;
}

/* Card Content */
.card-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #b6cf47;
    padding-bottom: 15px;
    }

.card-header img { height: 50px; margin-bottom: 10px; }
.card-header h2 { font-size: 1.8em; color: #333; }
.card-header p { color: #666; font-size: 0.9em; margin-top: 5px; }

/* Pricing Section inside Card */
.pricing-section {
    text-align: center;
    margin: 0;
    min-height: auto;
    margin-top: auto;
}

.price-row { margin-bottom: 15px; }
.price-label { display: block; font-size: 0.9em; color: #777; margin-bottom: 5px; }
.price-amount { font-size: 1.6em; font-weight: bold; color: #2a5180; }

/* Features List */
.features {
    margin: 5px 0 20px 0;
    flex-grow: 1; /* Dit zorgt ervoor dat de features sectie de beschikbare ruimte opvult */
 }
.features ul { list-style: none; }
.features li {
    padding: 8px 0;
    font-size: 0.9em;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    border-bottom: 1px solid #f9f9f9;
}
.features li::before {
    content: '✓'; color: #27ae60; font-weight: bold; margin-right: 10px; min-width: 15px; flex-shrink: 0;
}
.features li strong { color: #333; font-weight: 600; }

.buttons {
    display: flex;
    text-align: center;
    justify-content: center;
}

/* Buttons */
.button {
    width: 140px;
    padding: 10px;
    background: #cfe084 !important;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin: 10px;
        border: solid 1px;
}


.button:hover { background: #1c3b61; }
.payment-icons { width: 80px; margin-top: 5px; opacity: 0.8; }

/* Helper classes */
.hidden { display: none !important; }

.discount-text {
    color: #c0392b; /* Donkerrood voor de kortingswaarde */
    background-color: transparent; /* Geen storende achtergrond */
    font-weight: bold;
}

.vat-note { font-size: 0.75em; color: #999; margin-top: 20px; text-align: center; }

/* Info Section (Bottom) */
.info-section {
    background: white; border-radius: 8px; padding: 40px; margin-top: 40px;
    color: #555; line-height: 1.6;
}
.info-section h2 { color: #2a5180; margin-top: 20px; margin-bottom: 10px; }
.info-section a { color: #2a5180; text-decoration: none; font-weight: bold; }
.info-section ul { margin-left: 20px; margin-bottom: 20px; }

.warning {
        color: red;
        font-weight: bold;
        text-align: center;
        margin: 20px 0;
        /* NIEUWE REGELS: Neutrale achtergrond */
        background-color: #fff; /* Wit */
        padding: 10px; /* Biedt wat ruimte rond de tekst */
        border-radius: 5px;
        font-size: 19px;
    }

    p.discountMessage {
            color: orange !important; /* Maak de tekst wit, zodat deze leesbaar is op de donkere achtergrond */
            font-weight: bold;
            text-align: center;
            margin-top: -10px;
                        margin-bottom: 20px;
            padding: 5px;
            background-color: transparent;
        }


/* Responsive */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2em; }
    .currency-toggle { flex-direction: row; }
}