/* ===========================================
   About Section Styles
   =========================================== */
   .about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.about-section h1 {
    text-align: center;
    color: #1784CD;
    margin-bottom: 1.5rem;
    font-size: 2.5rem; /* Grotere kop voor grotere schermen */
}

.about-section h2 {
    margin-top: 1.5rem;
    color: #333;
    font-size: 2rem; /* Grotere subkop voor grotere schermen */
}

.about-section p, .about-section ul {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.6rem;
}

.about-section ul {
    padding-left: 20px;
}

.about-section ul li {
    margin-bottom: 0.5rem;
}

/* ===========================================
   Responsive Styles for smaller screens (mobile)
   =========================================== */
@media screen and (max-width: 768px) {
    /* About Section */
    .about-section {
        padding: 1rem; /* Minder padding voor kleine schermen */
        max-width: 100%; /* Zorgt ervoor dat de section niet breder is dan het scherm */
    }

    .about-section h1 {
        font-size: 2rem; /* Kleinere titel voor mobiel */
    }

    .about-section h2 {
        font-size: 1.6rem; /* Kleinere subkop voor mobiel */
    }

    .about-section p, .about-section ul {
        font-size: 1.4rem; /* Kleinere tekstgrootte voor mobiel */
    }

    /* Zorg ervoor dat lijstitems goed leesbaar blijven */
    .about-section ul {
        padding-left: 15px;
    }
}
