body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #dcdcdc; /* Light gray background for the whole page */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body stretches to fill the viewport */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #007BFF;
}

.wat-we-doen-section {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Fills available space to push footer down */
    padding: 20px;
    box-sizing: border-box;
}

.content-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto; /* Centers the block and adds spacing */
    padding: 20px;
    background-color: white; /* White background for content */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    border-radius: 8px; /* Rounded corners for clean design */
}

.content-block .image {
    width: 40%;
    text-align: center;
}

.content-block .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-block .text {
    width: 60%;
    padding: 20px;
}

.content-block .text h2 {
    font-size: 28px;
    color: #007BFF;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    width: 100%;
    margin-top: auto; /* Keeps footer at the bottom */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-right {
    text-align: right; /* Align content to the right */
    flex: 1;
    padding-right: 30px; /* Increased padding to shift content further left */
}

.footer-left p,
.footer-right p {
    margin: 5px 0;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right; /* Align list items to the right */
}

.footer-right ul li {
    margin: 5px 0;
}

.footer-right a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 100px;
    height: auto;
}
