/* General Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 36px;
}

p {
    font-size: 18px;
}

/* Section Styling */
section {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.intro {
    background-color: #e6e6e6;
}

/* Image Gallery */
.image-gallery {
    text-align: center;
}

#jonker-image {
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}
