/* Bestaande stijlen */
.hero {
    padding:0;
}

.hero h1 {
    margin: 50px 0;
}

.hero h2 {
    max-width: 800px;
    font-size: 60px;
    margin-bottom: 80px;
}

.info-section {
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 120px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.info-image {
    width: 35%;
    height: 400px;
    position: absolute;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}

.info-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.info-content {
    width: 60%;
    padding: 40px 40px 0;
    margin-left: auto;
    position: relative;
    z-index: 3;
}

.info-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #c4c7c9;
    text-shadow: 2px 2px 2px black;
}

.history-section {
    margin-top: 220px;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    padding-top: 200px;
}

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

.history-section h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
}

.history-content {
    display: flex;
    align-items: flex-start;
}

.history-text {
    width: 35%;
    padding-right: 40px;
}

.history-text h3 {
    font-size: 24px;
    margin: 80px 0 20px;
}

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

.history-image {
    padding: 40px;
    flex: 1;
    background-color: #2c3e507c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px;
}

.history-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;    
}

.tools {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tools h2.color-text {
    font-size: 60px;
    margin-bottom: 32px;
    margin-left: -5px;
}

.tools p {
    margin-bottom: 40px;
}

.tool-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.tool {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tool h2 {
    font-size: 48px;
    margin: 0;
    flex: 1;
}

.tool-info {
    flex: 1;
    margin: 0;
}

.tool-info p {
    line-height: 1.5;
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
}

/* Responsieve aanpassingen */
@media (max-width: 1024px) {
    .hero h2, .history-section h2, .tools h2.color-text {
        font-size: 48px;
    }

    .info-container {
        flex-direction: column;
        align-items: center;
    }
    .history-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .info-image, .history-text {
        width: 100%;
        position: static;
        margin-bottom: 20px;
        padding: 0;
    }

    .info-content, .history-image {
        width: 100%;
        padding: 20px;
        padding: 0;
    }

    .history-section {
        margin-top: 100px;
        padding: 0;
    }

  

    .history-section h2 {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }

    .hero h1 {
        margin: 30px 0;
    }

    .hero h2, .history-section h2, .tools h2.color-text {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .info-image {
        width: 100%;
        height: 100%    ;
        position: relative;
        left: 0;
        z-index: 1;
        border-radius: 10px;
    }

    .info-section {
        margin-top: 60px;
        padding: 0;
    }

    .info-content h2 {
        font-size: 28px;
    }

    .info-content p, .history-text p, .tool-info p {
        font-size: 16px;
    }

    .history-text h3 {
        font-size: 20px;
        margin: 40px 0 10px;
    }

    .tool {
        flex-direction: column;
        align-items: flex-start;
    }

    .tool h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .tools {
        padding: 0;
        margin: 80px 0;
    }

   
}

@media (max-width: 480px) {
    .hero h2, .history-section h2, .tools h2.color-text {
        font-size: 28px;
    }

    .info-content h2 {
        font-size: 24px;
    }

    .tool h2 {
        font-size: 28px;
    }

    .info-image {
        height: 300px;
    }
}