body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #94af3b;
    text-align: center;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    color: #fff; 
}
#countdown-timer {
    width: 75%;
    margin: 10px auto; 
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 3px 10px; 
    text-align: center;
}
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px; 
    color: #512E18;
    flex-wrap: wrap;
}
.countdown-label {
    font-weight: bold;
}
.countdown-values {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    color: #512E18;
}
.countdown-values span {
    margin: 0 5px;
    font-size: 24px;
}

a {
    color: inherit; 
    transition: all 0.3s ease; 
    font-weight: bold;
}

a:hover {
    text-decoration: none;
    font-style: italic; 
    color: inherit; 
}

.page-header {
    width: 75%;
    margin: 10px auto; 
    padding: 10px;
    background-color: rgba(148, 175, 59, 1); 
    border: none; 
    box-shadow: none; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.page-header img {
    max-width: 100%; 
    height: auto; 
}

.menu-section {
    margin: 10px auto; 
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 10px; 
    text-align: center; 
    color: #512E18; 
    margin-bottom: 10px; 
}

.menu-section table {
    width: 100%; 
    margin: 0 auto; 
    border-collapse: collapse; 
}

.menu-section td {
    padding: 0; 
    text-align: center; 
    font-size: 25px; 
    color: #512E18; 
}

.section-header {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 10px; 
}

.section-header h2 {
    display: flex;
    align-items: center; 
    box-shadow: none; 
}

.section-header img {
    width: 50px; 
    height: auto; 
    margin-right: 20px;
}

section {
    width: 75%;
    margin: 10px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 10px;
    text-align: left; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.image-section {
    display: flex;
    justify-content: space-around; 
    margin: 20px 0; 
}

.image-section img {
    max-width: 32%; 
    height: auto;
}

p {
    font-size: 25px;
    line-height: 1.5;
    color: #512E18; 
}

h2 {
    font-size: 36px;
    margin-bottom: 10px;
    margin-left: 10px;
    color: #512E18; 
}

ul {
    margin-top: 10px;
    padding-left: 20px;
}

li {
    font-size: 25px;
    line-height: 1.5;
    color: #512E18; 
}

.lightbox {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
}

.lightbox-image {
    max-width: 90%; 
    max-height: 90%; 
}

.lightbox-close {
    position: absolute; 
    top: 20px;
    right: 30px;
    color: white; 
    font-size: 30px; 
    cursor: pointer; 
}
.nieuws-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.nieuws-links {
    flex: 1 1 300px;
    min-width: 250px;
}

.nieuws-facebook {
    flex: 0 0 800;
    min-height: 400px;
    display: flex;
    justify-content: center;
}
.img-links-klein {
    float: left;
    height: 200px;
    margin: 0 0 10px 20px;
}
.img-rechts-klein {
    float: right;
    height: 200px;
    margin: 0 0 10px 20px;
}
@media screen and (max-width: 768px) {
    #countdown-timer {
        width: 95%;
        padding: 8px 12px;
    }

    .countdown-wrapper {
        flex-direction: column;
        gap: 6px;
        font-size: 18px;
        text-align: center;
    }

    .countdown-values {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 18px;
    }

    .countdown-values span {
        font-size: 18px;
        margin: 0 3px;
    }
}
@media screen and (max-width: 768px) {
    .nieuws-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .nieuws-facebook {
        flex: 1 1 100%;
        justify-content: center;
    }
    .img-rechts-klein {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
}