/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;

    main {
        h2, h4 {
            font-family: "Britannic Bold";
            font-weight: bold;
            color: #1a1d20;
        }

        p {
            font-family: Arial, sans-serif;
            color: #1a1d20;
        }
    }

    .reviews {
        h2, h5 {
            font-family: "Britannic Bold";
            font-weight: bold;
            color: #1a1d20;
        }

        p {
            font-family: Arial, sans-serif;
            color: #1a1d20;
        }
    }


    section {
        padding: 60px 0;

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }

        h4 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }

        p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
        }
    }

    /* Hoe het werkt sectie */

    #hoe-het-werkt {
        background-color: #fff;
    }

    /* Tarieven sectie */

    #tarieven {
        background-color: #f4f4f4;
    }

    /* Over ons sectie */

    #over-ons {
        background-color: #fff;
    }

    /* Evenementen sectie */

    #evenementen {
        background-color: #f4f4f4;
    }

    /* Succesverhalen sectie */

    #succesverhalen {
        background-color: #fff;
    }

    /* Contact sectie */

    #contact {
        background-color: #f4f4f4;
    }

    /* Knoppen (Algemeen) */

    .btn-custom {
        display: inline-block;
        padding: 12px 25px;
        background-color: #800020;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        transition: background-color 0.3s ease;

        &:hover {
            background-color: #cf0035;
        }
    }
}
