body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    color: #1a1a1a;
}
h1 {
    color: white;
    font-size: 28px;
    margin: 0;
    letter-spacing: 1px;
}
h2 {
    color: #cc4400;
    font-size: 22px;
    border-bottom: 2px solid #cc4400;
    padding-bottom: 5px;
    margin-bottom: 12px;
}
h3 {
    color: #333333;
    font-size: 17px;
    margin-bottom: 6px;
}
p {
    line-height: 1.7;
}
a {
    color: #cc4400;
}
a:hover {
    color: #ff6600;
}
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 4px solid #cc4400;
}
.header-logo {
    width: 110px;
    height: auto;
    border-radius: 6px;
}
.header-text {
    text-align: center;
}
.header-text p {
    color: #cc4400;
    margin: 4px 0 0 0;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
nav {
    background-color: #1a1a1a;
    text-align: center;
    padding: 0 20px;
}
nav a {
    color: #cccccc;
    text-decoration: none;
    display: inline-block;
    padding: 14px 18px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}
nav a:hover {
    color: #cc4400;
    border-bottom: 3px solid #cc4400;
}
nav a.actief {
    color: #cc4400;
    border-bottom: 3px solid #cc4400;
}
section {
    background-color: #ffffff;
    padding: 22px 25px;
    margin: 10px 10px;
    border-radius: 6px;
    border-left: 5px solid #cc4400;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
img {
    width: 300px;
    height: auto;
    margin-top: 10px;
}
.foto-rij {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.foto-rij img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #dddddd;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    margin-top: 15px;
    border: 2px solid #dddddd;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
ul {
    margin: 10px 0 10px 20px;
    line-height: 2;
}

ol {
    margin: 10px 0 10px 20px;
    line-height: 2;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 14px;
}
table, th, td {
    border: 1px solid #dddddd;
}
th {
    background-color: #1a1a1a;
    color: #cc4400;
    padding: 10px 12px;
    text-align: left;
}
td {
    padding: 9px 12px;
    text-align: left;
}
tr:nth-child(even) td {
    background-color: #f9f9f9;
}
caption {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 6px;
    color: #cc4400;
    text-align: left;
}
label {
    font-weight: bold;
    display: block;
    margin-top: 12px;
    color: #333333;
    font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 9px 10px;
    margin: 5px 0 8px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fafafa;
    box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #cc4400;
}
.radio-groep label,
.checkbox-groep label {
    display: inline;
    font-weight: normal;
    margin-left: 8px;
}
.radio-groep div,
.checkbox-groep div {
    margin: 5px 0;
}
textarea {
    height: 120px;
    resize: vertical;
}
button[type="submit"] {
    background-color: #cc4400;
    color: white;
    padding: 11px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 1px;
}
button[type="submit"]:hover {
    background-color: #aa3300;
}
.profiel-blok {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.profiel-blok img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid #cc4400;
}
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #aaaaaa;
    text-align: center;
    padding: 15px;
    margin-top: 12px;
    border-top: 4px solid #cc4400;
    font-size: 13px;
}
footer a {
    color: #cc4400;
}
