/* ------- Main container van de homepage ------- */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #222;
}

/* ------- Grote hero banner bovenaan de pagina ------- */
.hero {
    background: linear-gradient(135deg, #f26522, #ffffff);
    color: white;
    padding: 80px 50px;
    border-radius: 20px;
    margin-bottom: 30px;
}

/* ------- Grote titel in de hero ------- */
.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
}

/* ------- Introductie tekst in de hero ------- */
.hero p {
    font-size: 22px;
    max-width: 700px;

    color: white;
}

/* ------- Grid layout voor de informatie blokken ------- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* ------- Algemene styling voor alle sections ------- */
section {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

/* ------- Styling van H2 titels ------- */
h2 {
    color: #C49F4A;
    margin-bottom: 15px;
    border-bottom: 2px solid #f26522;
    padding-bottom: 10px;
}

/* ------- Algemene tekst styling voor paragrafen en lijsten ------- */
p,
li {
    font-size: 18px;
    line-height: 1.6;
}

/* ------- Inspringing van lijsten ------- */
ul {
    padding-left: 20px;
}

/* ------- Algemene knop styling ------- */
.button {
    display: inline-block;
    margin-top: 15px;
    background-color: #f26522;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 18px;
    transition: 0.3s;
}

/* ------- Hover effect op knoppen ------- */
.button:hover {
    background-color: #d94f12;
    transform: scale(1.05);
}

/* ------- Achtergrond kleur van de pagina ------- */
body {
    background-color: #f3f3f3;
}