<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* HERO SECTION */
.afbeelding {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Style the image */
.afbeelding img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Places the image behind other content */
}

/* DARK OVERLAY */
.afbeelding::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

/* TEXT IN HERO */
.afbeelding-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: center;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Delayed effect */
}
.afbeelding-content h1{
    font-size:64px;
}
.afbeelding-content p{
    font-size:20px;
}
/* FADE-IN ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* DOWNWARD ARROW */
.down-arrow {
    position: absolute;
    bottom: 20px; /* Positions it at the bottom of the image */
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: white;
    animation: bounce 1.5s infinite ease-in-out;
    cursor: pointer;
}

/* BOUNCE ANIMATION */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
.container {
    width: 90%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Title */
.title {
    font-size: 36px;
    font-weight:bold;
    margin-bottom: 20px;
    color: #333;
}

/* Content Layout */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

/* Image Styling */
.content img {
    width: 45%;
    max-width:400px;
    border-radius: 8px;
}

/* Text Styling */
.content p {
    width: 55%;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}
.content li {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}
.footer {
    background: #111; /* Dark background */
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    position: relative; /* Keeps it at the bottom without covering content */
    bottom: 0;
    width: 100%;
}
section {
    padding: 40px 0;
    overflow: hidden;
  }
  
  .section-header {
    border-bottom: 2px solid var(--color-black);
  }
  
  .section-header h2 {
    font-size: 50px;
    color: var(--color-black);
  }
  
  .section-header p {
    margin-bottom: 0;
  }
  /* CONTACT SECTION */
.contact-section {
    background: #1a1a1a; /* Dark background */
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: -5px; /* Removes gap from the image */
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-section h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 18px;
    margin: 8px 0;
    display: inline-block;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
}
.contact-details a {
    text-decoration: none;
    color:white;
}

.contact-details strong {
    color: #3A8ABB;
}
.custom_oplijsting {
    list-style: none; 
    padding-left: 0;  
}

.custom_oplijsting li {
    position: relative;
    padding-left: 25px; 
}

.custom_oplijsting li::before {
    content: "";
    position: absolute;
    left: 0;
    top:13px;
    transform: translateY(-50%);
    width:15px;  
    height: 15px; 
    background: url("../img/horseshoe.png") no-repeat center center;
    background-size: contain; 
    color: black;
}</pre></body></html>