/* --- Reset & basis --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Mulish', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Header --- */
.header {
    background: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.header .logo img {
    height: 50px;
}
.progress {
    font-size: 14px;
    font-weight: 600;
    color: #d6140f;
}
/* --- Badge --- */
.badge {
    background: #e6f0fa;
    color: #004080;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    margin: 20px 0;
}
/* --- Slideshow --- */
.slideshow {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px 0;
}
.slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slideshow .slide.active {
    opacity: 1;
}
.slideshow .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}
.slideshow .dots span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}
.slideshow .dots span.active {
    background: #fff;
}
/* --- Knoppen --- */
.btn {
    display: inline-block;
    background: #d6140f;
    color: #fff;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}
.btn:hover {
    background: #b0100b;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* --- Compensatieblok --- */
.compensacao {
    background: #e8f5e9;
    border-left: 6px solid #2e7d32;
    padding: 18px 25px;
    margin: 25px 0;
    border-radius: 4px;
}
/* --- Formulieren --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin: 25px 0;
}
.form-grid .full-width {
    grid-column: 1 / -1;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}
.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d6140f;
    box-shadow: 0 0 0 3px rgba(214,20,15,0.2);
}
.form-group .helper {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}
/* --- Timer en herzend knop --- */
.timer {
    font-weight: 600;
    color: #d6140f;
    margin-left: 10px;
}
.btn-resend {
    background: transparent;
    color: #d6140f;
    border: 1px solid #d6140f;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: none;
    margin-top: 10px;
}
.btn-resend:hover {
    background: #d6140f;
    color: #fff;
}
/* --- Footer --- */
.footer {
    background: #f8f8f8;
    padding: 30px 20px 15px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}
.footer .links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
}
.footer .links a {
    color: #555;
}
.footer .links a:hover {
    color: #d6140f;
}
.footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}
/* --- Sucesso --- */
.sucesso-icon {
    font-size: 60px;
    color: #2e7d32;
    text-align: center;
    margin: 30px 0;
}
/* --- Responsive --- */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .slideshow {
        height: 200px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}