html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	font-family: Arial;
}

a {
	text-decoration: none;
	color: #FFD700;
}

a:hover {
    transform: translateZ(5px) scale(1.05); /* Zorgt ervoor dat de tekst naar voren komt */
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Schaduw achter de tekst */
}

li {
	margin-bottom: 20px;
}

.intro {
	padding-top: 20px;
    padding-bottom: 20px;
}


.box-1 {
    width: 100%;
    background-image: linear-gradient(#205533, #5d906f);
	margin-bottom: 20px;
}

.text-box {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Voegt een rustige overgang toe */
}

.text-box:hover {
    transform: scale(1.02); /* Vergroot de box iets bij hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Voegt meer diepte toe aan de schaduw */
}

.text-box-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.text-box img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.text-box h2 {
    font-size: 1.9em;
    margin: 0 0 10px 0;
    color: white;
}

.text-box p {
    margin: 0;
    line-height: 1.6;
    color: #F0F0F0;
}

.text-box.left .text-box-content {
    flex-direction: row; /* Afbeelding links */
}

.text-box.right .text-box-content {
    flex-direction: row-reverse; /* Afbeelding rechts */
}

/* FAQ */
.faq {
	margin-right: 20%;
	margin-left: 20%;
	margin-bottom: 100px;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 768px) {
	.text-box {
		margin-right: 2%;
		margin-left: 2%;
	}
	
    .text-box-content {
        flex-direction: column !important; /* Stapel tekst en afbeelding verticaal */
        align-items: center; /* Centreer de inhoud */
        text-align: center; /* Centreer de tekst */
    }

    .text-box img {
        width: 100%; /* Laat de afbeelding de volledige breedte innemen op kleine schermen */
        margin-top: 15px;
    }
	
	.faq {
		margin-right: 2%;
		margin-left: 2%;
	}
}

::-webkit-scrollbar {
    display: none;
}