body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f1ea;
    color: #2b2b2b;
    line-height: 1.6;
}

.ap-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigatie */
.ap-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.ap-nav a {
    color: #2f4f3f;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
}

.ap-nav a:hover {
    background: #e3e0d8;
}

.ap-nav a.active {
    color: #fff;
    background: #2f4f3f;
}

/* Hero */
.ap-hero {
    background: linear-gradient(135deg, #2f4f3f, #3f6b55);
    color: white;
    padding: 45px 25px;
    border-radius: 14px;
    text-align: center;
}

.ap-hero h1 {
    margin: 0;
    font-size: 28px;
}

.ap-hero p {
    margin-top: 10px;
    opacity: 0.9;
}

/* Algemene secties */
section {
    margin-top: 30px;
}

.ap-intro,
.regio-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ap-intro h2,
.regio-box h2 {
    margin-top: 0;
    color: #2f4f3f;
}

/* Agenda */
.ap-agenda h2 {
    margin-bottom: 15px;
}

.ap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.ap-blok {
    background: white;
    padding: 15px;
    border-radius: 12px;
    border-left: 5px solid #2f4f3f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.15s ease;
}

.ap-blok:hover {
    transform: translateY(-2px);
}

.ap-blok h3 {
    margin: 0 0 8px 0;
    color: #2f4f3f;
    font-size: 18px;
}

.ap-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ap-blok a {
    display: inline-block;
    margin-top: 10px;
    color: #2f4f3f;
    font-weight: bold;
    text-decoration: none;
}

.ap-blok a:hover {
    color: #1f382b;
}

/* CTA */
.ap-cta,
.regio-cta {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.ap-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    background: #2f4f3f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.ap-button:hover {
    background: #3f6b55;
}

/* Regio */
.regio-box ul {
    padding-left: 20px;
}

/* Gewone links in regioteksten */
.regio-box a {
    color: #2f4f3f;
    font-weight: 600;
    text-decoration: none;
}

.regio-box a:hover {
    color: #1f382b;
    text-decoration: underline;
}

/* Plaatslinks in lopende tekst */
.plaats-link {
    color: #2f4f3f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #9aaa9f;
}

.plaats-link:hover {
    color: #1f382b;
    border-bottom-color: #2f4f3f;
}

/* Footer */
.ap-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}