* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #EBF4F0;

}



.container-medium {
    max-width: 1400px;
    margin: 30px auto;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h3 {
    font: bold;
}

.navbar-infomaatjes {
    position: sticky;

    background-color: #C5D9F1;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;


}

.logo img {
    height: 70px;
    width: auto;
}

.mascot-block {
    margin-left: 200px;
    border-radius: 60px;
    width: 200px;
    height: 300px;
    background-color: #1B3689;

    display: flex;
    align-items: center;
    justify-content: center;

}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}


.points {
    margin: 80px;
    padding: 0;
    align-items: center;
}

.nav-menu li,
.nav-item {
    padding: 0 25px !important;
    border-right: 3px solid #3A5F8F !important;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-link {
    text-decoration: none;
    font-size: 20px !important;
    font-weight: 700 !important;
    transition: opacity 0.3s ease;
}


.nav-menu li:nth-child(1) .nav-link {
    color: #1f497d;
}


.nav-menu li:nth-child(2) .nav-link {
    color: #9dc47d;
}


.nav-menu li:nth-child(3) .nav-link {
    color: #1f497d;
}


.nav-menu li:nth-child(4) .nav-link {
    color: #9dc47d;
}

.nav-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.welcome {
    scroll-margin-top: 80px;
    padding: 60px 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 50%, #f0f7ff 100%);
    border-radius: 0 0 30px 30px;
}

/* Hero Icon - Naast de titel */
.title-with-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.mascot-logo-small {
    width: 120px;
    height: auto;
    background-color: #1f497d;
    padding: 15px;
    border-radius: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.home-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.home-left h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1f497d;
    line-height: 1.3;
}

.home-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #92D050 0%, #7dc043 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(146, 208, 80, 0.3);
}

.home-text {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4F81BD;
}

.home-text p {
    margin-bottom: 15px;
}

.home-text p:last-child {
    margin-bottom: 0;
}

/* Right Side - Features */
.home-right {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(135deg, #1f497d 0%, #2d5a8f 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(31, 73, 125, 0.3);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 15px 20px;
    padding-left: 55px;
    position: relative;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    font-size: 22px;
    color: #92D050;
    font-weight: bold;
}

.features-list li:last-child {
    margin-bottom: 0;
}

/* Section Divider */
.section-divider {
    height: 4px;
    background: linear-gradient(to right,
            #4F81BD 0%,
            #92D050 50%,
            #4F81BD 100%);
    margin: 80px auto;
    max-width: 80%;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#wat-is {
    scroll-margin-top: 80px;
    padding: 60px 60px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 50%, #f1f8e9 100%);
}

.wat-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

/* Left Column - Problem & Solution */
.wat-is-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Right Column - Text & Image */
.wat-is-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0;
    color: #1f497d;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #92D050, #7dc043);
    border-radius: 2px;
}

/* Problem & Solution Boxes */
.problem-box,
.solution-box {
    margin-bottom: 10px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.problem-box:hover,
.solution-box:hover {
    transform: translateY(-3px);
}

.problem-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 5px solid #e74c3c;
}

.solution-box {
    background: linear-gradient(135deg, #f0fff4 0%, #dcffe4 100%);
    border-left: 5px solid #92D050;
}

.problem-box h3,
.solution-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.problem-box h3 {
    color: #c0392b;
}

.solution-box h3 {
    color: #27ae60;
}

.problem-box ul,
.solution-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.problem-box ul li,
.solution-box ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

.problem-box ul li:last-child,
.solution-box ul li:last-child {
    margin-bottom: 0;
}

.problem-box ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
}

.solution-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #92D050;
    font-size: 18px;
    font-weight: bold;
}

/* Intro Text */
.intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #4F81BD;
}

/* Horizontal Image Placeholder */
.image-placeholder-vertical {
    width: 100%;
    height: auto;
    border: none;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 20px;
}

.parkeerplaats {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;

    cursor: zoom-in;
    transition: 0.3s;

    overflow-clip-margin: content-box;
    overflow: clip;

    display: block;
    width: 100%;
    padding: 0 2.4em;
}

.parkeerplaats:hover {
    transform: scale(1.02);
}


.screenshot-container {
    margin-top: 40px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
    overflow: hidden;
}

.screenshot-container .parkeerplaats {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.over-informaatje {
    scroll-margin-top: 80px;
    margin-top: 800px;
    padding: 40px 20px;
}

/* Over Informaatje Section */
#over {
    scroll-margin-top: 80px;
    padding: 60px 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 50%, #f0f4ff 100%);
}

.over-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.over-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.over-subtitle {
    font-size: 26px;
    font-weight: bold;
    color: #1f497d;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-right: 5px solid #92D050;
}

.over-quote {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 10px 0;
    padding: 25px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4F81BD;
}

.over-quote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(79, 129, 189, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.over-quote em {
    font-style: italic;
    color: #1f497d;
}

.over-left h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1f497d;
    margin-top: 10px;
}

.kernwaarden-list {
    list-style: none;
    padding-left: 0;
}

.kernwaarden-list li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
    padding: 12px 20px;
    padding-left: 50px;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.kernwaarden-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kernwaarden-list li::before {
    content: '★';
    position: absolute;
    left: 18px;
    color: #4F81BD;
    font-size: 18px;
}

.kernwaarden-list li:last-child {
    margin-bottom: 0;
}

.over-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, #1f497d 0%, #2d5a8f 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(31, 73, 125, 0.3);
}

.over-right h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
    text-align: center;
}

.projecten-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 15px;
    text-align: center;
}

.projecten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.project-item {
    text-align: center;
}

.project-placeholder {
    width: 100%;
    height: 120px;
    border: none;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.project-placeholder:hover {
    transform: scale(1.05);
}

.project-placeholder img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

.bigfriends {
    width: 100%;
    height: 120px;
    border: none;
    background-color: #1B3689;
    position: relative;
    border-radius: 10px;
}

.project-quote {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

.contact-demo {
    scroll-margin-top: 80px;
    margin-top: 800px;

    padding: 40px 20px;
}

/* Contact/Demo Section */
#demo {
    scroll-margin-top: 80px;
    padding: 60px 60px;
}

.demo-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.demo-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-subtitle {
    font-size: 26px;
    font-weight: bold;
    color: #1f497d;
    line-height: 1.3;
    margin-bottom: 10px;
}

.demo-left h4 {
    font-size: 20px;
    font-weight: 600;
    color: #4F81BD;
    margin-top: 10px;
}

.demo-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.demo-list li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
    padding-left: 35px;
    position: relative;
}

.demo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #92D050;
    font-size: 22px;
    font-weight: bold;
}

.demo-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.demo-right h4 {
    font-size: 22px;
    font-weight: bold;
    color: #1f497d;
    text-align: center;
    margin-bottom: 5px;
}

.demo-button {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #4F81BD 0%, #3A6BA5 100%);
    color: #FFFFFF;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(79, 129, 189, 0.4);
    border: 2px solid transparent;
}

.demo-button:hover {
    background: linear-gradient(135deg, #3A6BA5 0%, #2D5280 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 129, 189, 0.5);
    border-color: #92D050;
}

.footer-gradient {
    height: 100px;
    background: linear-gradient(to bottom,
            #EBF4F0 0%,
            #E5EDF5 30%,
            #D4E5F4 60%,
            #C5D9F1 100%);
}

.footer {
    font-size: 25px;
    background-color: #C5D9F1;
    color: #1f497d;
    padding: 40px 20px 20px;

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-column h3 {
    color: #92D050;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    margin: 8px 0;
    line-height: 1.6;
}

.footer-link {
    color: #1f497d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #92D050;
    font-style: italic;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #1f497d;
}

.footer-link {
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .container-medium {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 2px solid #4F81BD;
        padding: 10px 20px;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .logo img {
        height: 40px;
    }

    .nav-link {
        font-size: 16px;
    }

    .hero-icon .mascot-logo {
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .container-medium {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .navbar-infomaatjes {
        padding: 10px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu li {
        padding: 8px 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Responsive */
@media screen and (max-width: 968px) {
    .problem-solution-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-placeholder-large {
        height: 300px;
    }
}