/* CSS Verkopen / verhuren */

#main-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0px 40px;
    box-sizing: border-box;
}

.section-intro h1,
.section-conclusion p,
.section-content h2 {
    font-weight: 600; 
    color: var(--main-color); 
    margin-bottom: 60px;
}

.section-intro h1 {
    font-weight: 1200; 
    font-size: xx-large;
}

.section-intro,
.section-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.section-conclusion h2 {
    color: var(--main-color);
}

.section-intro ul {
    list-style-position: inside;
    padding-left: 0; 
    margin-left: 0;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 20px;
    margin-bottom: 40px;
    height: auto;
}

.section-content .ereloon-content {
    margin: auto;
    align-self: center;
    max-width: 200px;
    text-align: center;
}

.content-image,
.content-text {
    flex: 1; 
}

.content-text {
    background-color: #f9f9f9; 
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(240, 123, 13, 0.2); 
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.italic-text {
    font-style: italic;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
    .section-intro {
        margin: 0;
        padding: 0;
    }

    .content-image,
    .content-text {
        width: 100%; 
        margin-bottom: 20px; 
    }

    .content-text, .content-image img {
        border-radius: 0; 
    }
}
