/* ============================================================
   INFO.CSS — Stijlen voor de informatiepagina
   ============================================================ */

body {
    background-color: #f7f6fd;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 16px 40px;
    flex: 1;
}

/* Info-sectie */
.info-section {
    margin-top: calc(var(--navbar-height) + 2rem);
    max-width: 800px;
    width: 100%;
    background-color: var(--color-purple-mid);
    padding: 40px 44px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    color: var(--color-text);
    line-height: 1.7;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.info-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-green-btn);
    border-radius: 2px;
    margin: 8px auto 0;
}

.info-section p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section a {
    color: var(--color-green-btn-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-smooth);
}

.info-section a:hover {
    color: var(--color-green-btn);
    text-decoration: underline;
}

/* Prijs-highlight */
.info-section strong {
    color: var(--color-text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .info-section {
        padding: 28px 22px;
        margin-top: calc(var(--navbar-height) + 1.5rem);
    }

    .info-section h2 {
        font-size: 1.6rem;
    }
}
