/* DuivenAlert - gedeelde stijl voor info-pagina's */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.04);
}

header {
    border-bottom: 2px solid #2c7a4b;
    padding-bottom: 20px;
    margin-bottom: 32px;
}

header h1 {
    color: #2c7a4b;
    font-size: 2em;
    margin-bottom: 4px;
}

header .tagline {
    color: #666;
    font-size: 0.95em;
    font-style: italic;
}

nav {
    margin-top: 16px;
    font-size: 0.9em;
}

nav a {
    color: #2c7a4b;
    text-decoration: none;
    margin-right: 16px;
}

nav a:hover { text-decoration: underline; }

main h1 {
    color: #2c7a4b;
    margin-bottom: 20px;
    font-size: 1.8em;
}

main h2 {
    color: #2c7a4b;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.3em;
}

main h3 {
    color: #444;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.1em;
}

main p {
    margin-bottom: 14px;
}

main ul, main ol {
    margin-left: 24px;
    margin-bottom: 14px;
}

main li {
    margin-bottom: 6px;
}

main a {
    color: #2c7a4b;
}

.info-box {
    background: #f0f7f3;
    border-left: 4px solid #2c7a4b;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.warning-box {
    background: #fff4e5;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
}

table th {
    background: #f0f7f3;
    color: #2c7a4b;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    color: #2c7a4b;
    margin-bottom: 6px;
}

footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
    color: #666;
    text-align: center;
}

footer a {
    color: #2c7a4b;
    text-decoration: none;
    margin: 0 8px;
}

.updated {
    font-size: 0.85em;
    color: #999;
    font-style: italic;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .container { padding: 24px 16px; }
    header h1 { font-size: 1.5em; }
    main h1 { font-size: 1.4em; }
    nav a { display: inline-block; margin-bottom: 8px; }
}
