*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fb;
    color:#1f2937;
}

a{
    color:#0f766e;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.wrap{
    width:min(1200px,95%);
    margin:auto;
}

/* HEADER */

.top{
    background:white;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:100;
}

.top-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85px;
    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;
}

.brand-logo img{
    width:48px;
    max-width:48px;
    height:auto;
    display:block;
    border-radius:10px;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text strong{
    font-size:24px;
    color:#0f172a;
}

.brand-text span{
    color:#64748b;
    font-size:14px;
}

/* MENU */

.main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:28px;
    margin-left:auto;
}

.main-nav a,
.main-nav button{
    background:none;
    border:none;
    color:#0f172a;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    padding:28px 0;
    font-family:inherit;
    white-space:nowrap;
    text-decoration:none;
}

.main-nav a:hover,
.main-nav button:hover{
    color:#0f766e;
    text-decoration:none;
}

.menu-item{
    position:relative;
}

.menu-item button span{
    font-size:13px;
    margin-left:4px;
}

.menu-drop{
    display:none;
    position:absolute;
    top:68px;
    left:0;
    min-width:220px;
    background:white;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(15,23,42,.14);
    padding:8px;
    z-index:999;
}

.menu-item:hover .menu-drop{
    display:block;
}

.menu-drop a{
    display:block;
    padding:11px 13px;
    border-radius:10px;
    white-space:nowrap;
    color:#0f172a;
}

.menu-drop a:hover{
    background:#f1f5f9;
    color:#0f766e;
}

/* MAIN */

main{
    padding:50px 0 25px;
}

/* HOME HERO */

.hero-keurmerk{
    display:grid;
    grid-template-columns:1.45fr .85fr;
    gap:45px;
    align-items:center;
    background:linear-gradient(135deg,#ecfdf5,#eff6ff);
    border:1px solid #bfdbfe;
    border-radius:28px;
    padding:36px;
    margin-bottom:26px;
    overflow:hidden;
}

.hero-text h1{
    margin:14px 0 16px;
    font-size:44px;
    line-height:1.08;
    color:#0f172a;
    letter-spacing:-1px;
}

.lead{
    font-size:18px;
    line-height:1.65;
    color:#334155;
    max-width:760px;
}

.badge-small{
    display:inline-block;
    background:#0f766e;
    color:white;
    font-weight:bold;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
}

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.btn.big{
    padding:15px 22px;
    font-size:16px;
}

/* HOME KEURMERK CARD */

.keurmerk-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:26px;
    padding:26px;
    box-shadow:0 18px 45px rgba(15,23,42,.10);
    text-align:center;
}

.voa-logo-home{
    width:190px;
    max-width:80%;
    height:auto;
    display:block;
    margin:0 auto 16px;
}

.keurmerk-card h2{
    margin:8px 0;
    color:#0f172a;
}

.keurmerk-card p{
    color:#475569;
    line-height:1.55;
}

.keurmerk-card ul{
    list-style:none;
    padding:0;
    margin:18px 0 0;
    text-align:left;
}

.keurmerk-card li{
    padding:9px 0 9px 30px;
    position:relative;
    border-bottom:1px solid #f1f5f9;
}

.keurmerk-card li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:8px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#dcfce7;
    color:#166534;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

/* TRUST ROW */

.trust-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:24px;
}

.trust-row div{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.trust-row strong{
    display:block;
    color:#0f766e;
    font-size:20px;
    margin-bottom:5px;
}

.trust-row span{
    color:#64748b;
    font-size:14px;
}

/* CARDS */

.card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.card h1,
.card h2,
.card h3{
    color:#0f172a;
}

.card p{
    line-height:1.65;
}

.seo-card{
    background:#ffffff;
}

.callout{
    background:linear-gradient(135deg,#0f766e,#115e59);
    color:white;
    border:none;
}

.callout h2,
.callout p,
.callout a:not(.btn){
    color:white;
}

.callout .btn{
    background:white;
    color:#0f766e;
}

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

.keur-grid .card{
    margin-bottom:0;
}

/* CHECKLIST / STEPS */

.checklist{
    list-style:none;
    padding:0;
    margin:0;
}

.checklist li{
    padding:10px 0 10px 32px;
    position:relative;
    border-bottom:1px solid #f1f5f9;
}

.checklist li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:9px;
    width:23px;
    height:23px;
    border-radius:50%;
    background:#dcfce7;
    color:#166534;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.steps{
    margin:0;
    padding-left:22px;
}

.steps li{
    padding:7px 0;
    line-height:1.55;
}

/* BUTTONS */

.btn{
    display:inline-block;
    background:#0f766e;
    color:white;
    border:none;
    border-radius:14px;
    padding:12px 18px;
    cursor:pointer;
    font-weight:bold;
    transition:.2s;
}

.btn:hover{
    background:#115e59;
    text-decoration:none;
}

.btn.light{
    background:white;
    border:1px solid #cbd5e1;
    color:#0f766e;
}

/* FORMULIER */

label{
    display:block;
    margin-top:15px;
    margin-bottom:5px;
    font-weight:bold;
}

input,
textarea,
select{
    width:100%;
    padding:12px;
    border:1px solid #d1d5db;
    border-radius:14px;
    font-size:15px;
}

textarea{
    min-height:120px;
}

/* STATUS */

.status{
    display:inline-block;
    padding:8px 12px;
    border-radius:999px;
    font-weight:bold;
}

.status.approved{
    background:#dcfce7;
    color:#166534;
}

.status.pending{
    background:#fef9c3;
    color:#854d0e;
}

.status.rejected,
.status.suspended{
    background:#fee2e2;
    color:#991b1b;
}

/* MELDINGEN */

.note{
    background:#eff6ff;
    border:1px solid #bfdbfe;
    border-radius:15px;
    padding:15px;
    margin-bottom:20px;
}

.note.ok{
    background:#dcfce7;
    border-color:#86efac;
}

.note.danger{
    background:#fee2e2;
    border-color:#fecaca;
}

/* TABELLEN */

.table{
    width:100%;
    border-collapse:collapse;
}

.table th{
    background:#f8fafc;
}

.table th,
.table td{
    border:1px solid #e5e7eb;
    padding:12px;
    vertical-align:top;
}

/* FOOTER */

footer{
    background:#111827;
    color:white;
    margin-top:40px;
    padding:40px 0;
}

footer a{
    color:#93c5fd;
}

/* MOBIEL */

@media(max-width:900px){

    .top-inner{
        flex-direction:column;
        align-items:flex-start;
        min-height:auto;
        padding:14px 0;
        gap:12px;
    }

    .brand-logo img{
        width:52px;
        max-width:52px;
    }

    .brand-text strong{
        font-size:20px;
    }

    .brand-text span{
        font-size:12px;
    }

    .main-nav{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        gap:8px;
        margin-left:0;
        justify-content:flex-start;
    }

    .main-nav a,
    .main-nav button{
        background:#f8fafc;
        border:1px solid #e5e7eb;
        border-radius:12px;
        padding:11px 13px;
        font-size:14px;
    }

    .menu-item{
        width:100%;
    }

    .menu-item button{
        width:100%;
        text-align:left;
    }

    .menu-drop{
        display:block;
        position:static;
        box-shadow:none;
        border:none;
        background:transparent;
        padding:8px 0 0 0;
        min-width:0;
    }

    .menu-drop a{
        background:white;
        border:1px solid #e5e7eb;
        margin-bottom:6px;
    }

    main{
        padding:18px 0;
    }

    .hero-keurmerk{
        grid-template-columns:1fr;
        padding:24px;
        gap:24px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .lead{
        font-size:16px;
    }

    .trust-row{
        grid-template-columns:1fr 1fr;
    }

    .card{
        padding:20px;
        border-radius:18px;
    }
}

@media(max-width:560px){

    .trust-row{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
        text-align:center;
    }

    .main-nav a,
    .main-nav button{
        flex:1 1 auto;
    }
}