/**
 * Über uns Page Stylesheet
 * Evolux Cards - Styling voor Über uns pagina
 */

/* ===== INFO PAGE SECTION ===== */
.info-page-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.info-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-page-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.info-page-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

.info-page-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.info-page-text p {
    margin-bottom: 20px;
    text-align: left;
}

.info-page-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.info-page-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.info-page-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-page-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-page-section {
        padding: 40px 0;
    }
    
    .info-page-text {
        font-size: 15px;
    }
    
    .info-page-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .info-page-text h3 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 14px;
    }
}

