/* static/css/home/service_pakketten_home.css */
/* Pricing Info Banner onder de pakketten homepagina (geoptimaliseerd)/

/* ========== Pricing Info Banner (Onder de pakketten) ========== */
.pricing-info-banner {
    max-width: 900px;
    margin: 3rem auto 0; /* Afstand boven */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Iets zachtere schaduw */
    /* border-left verwijderd voor een strakkere look */
    padding: 2rem; /* Ruimere padding */
    display: flex;
    flex-direction: column; /* Content onder elkaar, icoon is weg */
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Het icoon blok is verwijderd uit de HTML, dus deze CSS is niet meer nodig */
/* .pricing-info-banner .info-icon { ... } */

.pricing-info-banner .info-content {
    flex: 1;
    width: 100%;
}

.pricing-info-banner h4 {
    font-size: 1.4rem; /* Iets groter */
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800; /* Iets dikker */
    text-align: center; /* Gecentreerde titel */
}

.pricing-info-banner .info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gelijke kolommen */
    gap: 2rem; /* Meer ruimte tussen kolommen */
    margin-bottom: 1.5rem;
    align-items: start; /* Uitlijnen aan de bovenkant */
}

.pricing-info-banner .info-col {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* Iconen van de kolommen (poppetje, lagen, muntjes) */
.pricing-info-banner .info-col > i {
    color: var(--primary-color); /* Primaire kleur voor deze iconen */
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-info-banner .info-col strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-info-banner .info-col p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ----- NIEUW: Strakke uitlijning voor de Uitbreidingen-kolom ----- */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-label {
    flex: 1;
    padding-right: 1rem;
}

.pricing-value {
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap; /* Voorkomt dat de prijs op twee regels komt */
    text-align: right;
}
/* ---------------------------------------------------------------- */

.pricing-info-banner .info-footer-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    font-style: italic;
    text-align: center; /* Gecentreerde voetnoot */
}

/* Responsiveness voor mobiel en tablets */
@media (max-width: 991px) {
    .pricing-info-banner .info-row {
        grid-template-columns: 1fr; /* Alles onder elkaar */
        gap: 2rem;
    }

    .pricing-info-banner {
        padding: 1.5rem;
    }

    .pricing-info-banner h4 {
        margin-bottom: 1.5rem;
    }

    /* Op mobiel extra ruimte tussen de items */
    .pricing-info-banner .info-col:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 1.5rem;
    }
}