.intro-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.intro-section h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #333;
}

.intro-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 25px auto;
    color: #555;
}

.intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 20px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
.animated-delay-1 {
    animation-delay: 0.3s;
}

.animated-delay-2 {
    animation-delay: 0.6s;
}

#promo{
	max-width: 100%;	
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

h1{
	text-align: center;
	margin: 50px 0 30px;
}
h2{
	color: hsl(225, 60%, 35%);
}
.home-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 120px 0;
   	background-color: hsla(225, 60%, 35%, .2);
}

.info-block {
	position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 300px;
    max-width: 330px;
    padding: 30px;
    text-align: left;
	margin-top: -5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block h3 {
	border-bottom: 1px solid hsl(225, 60%, 35%);
    font-size: 18px;
    color: hsl(225, 60%, 35%);
    margin-bottom: 15px;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
	margin-bottom: 45px;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.bottom-icon {
	position: absolute;
    text-align: center;
	width: calc(100% - 60px);
	margin-bottom: 20px;
	bottom: 0;
}

.bottom-icon i {
    font-size: 40px;
    color: #15A000;
}
/* Algemene basis */
.wrap{
    margin: 0;
}
.wrap.top-wrap{
	padding: 0;
}
.wrap.scnd-wrap{
	padding: 60px 0 0;
}
.wrap-ph {
    margin: 0 auto;
    max-width: 1200px;
    padding: 30px 20px;
    color: #333;
}

/* Flexbox instellingen */
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px auto 0;
    flex-direction: row;
}

.flex-wrap.reverse-wrap {
    flex-direction: row-reverse;
}

/* Tekstblok */
.promo-text {
    flex: 1 1 500px;
}

.promo-text h2 {
    font-size: 28px;
    color: hsl(225, 63%, 45%);
    margin-bottom: 20px;
}

.promo-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Afbeeldingsblok */
.promo-image {
    flex: 1 1 500px;
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Fade-in effect */
.fade-in {
    opacity: .5;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-left {
    opacity: 0;
    transform: translateX(-250px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-right {
    opacity: 0;
    transform: translateX(250px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* Responsief */
@media (max-width: 1120px) {
    .home-info-blocks {
        flex-direction: column;
        align-items: center;
    }

    .info-block {
        max-width: 90%;
    }
}
