    * {
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        text-align: center;

        background-color: #f4f4f4;
        background-image:
            linear-gradient(
                rgba(255, 255, 255, 0.25),
                rgba(255, 255, 255, 0.25)
            ),
            url("https://9f5cc2304d.cbaul-cdnwnd.com/4d5c4d9eae783bc0b8b434f7723a27f9/200000093-bacbabacbc/back.webp?ph=9f5cc2304d");

        background-size: cover;
        background-position: center;
        background-attachment: fixed;

        margin: 0;
        padding: 30px 15px;

        min-height: 100vh;
    }

    /* Hoofdcontainer */

    .page {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Titel */

    .header {
        margin-bottom: 25px;
    }

    h1 {
        margin: 10px 0 8px;

        color: #333;
        font-size: 32px;
        font-weight: 700;
    }

    .header p {
        margin: 0;

        color: #666;
        font-size: 14px;
    }

    /* Zoekvelden */

    .search-container {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 15px;
        margin-bottom: 25px;

        flex-wrap: wrap;
    }

    .search-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search-item img {
        width: 32px;
        height: 32px;

        object-fit: contain;
    }

    .search-item form {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .search-container input {
        width: 200px;
        height: 42px;

        padding: 10px 12px;

        border-radius: 5px;
        border: 1px solid #ccc;

        background: white;

        font-family: 'Inter', sans-serif;
        font-size: 14px;

        outline: none;
    }

    .search-container input:focus {
        border-color: #4285F4;
        box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.12);
    }

    .search-container button {
        width: 42px;
        height: 42px;

        padding: 0;

        border: none;
        border-radius: 5px;

        background-color: #4285F4;
        color: white;

        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: background-color 0.2s ease;
    }

    .search-container button:hover {
        background-color: #3367d6;
    }

    .search-container .material-icons {
        font-size: 20px;
    }

    span {
        user-select: none;
    }

    /* Secties */

    .section {
        width: 100%;

        background: rgba(255, 255, 255, 0.95);

        padding: 20px;

        border-radius: 10px;

        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);

        margin-bottom: 20px;
    }

    .section-header {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 7px;

        margin-bottom: 15px;
    }

    .section-header .material-icons {
        font-size: 21px;
        color: #4285F4;
    }

    h2 {
        margin: 0;

        color: #333;
        font-size: 20px;
        font-weight: 600;
    }

    /* Links */

    .links-container {
        display: flex;
        flex-wrap: wrap;

        justify-content: center;

        gap: 10px;
    }

    /* Knoppen */

    .link {
        display: flex;
        align-items: center;

        background: #ffffff;

        padding: 10px 15px;

        border-radius: 8px;

        border: 1px solid #eeeeee;

        text-decoration: none;
        color: black;

        font-weight: 600;
        font-size: 14px;

        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);

        transition:
            background-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .link:hover {
        background: #f5f5f5;

        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.14);
    }

    .link img {
        width: 24px;
        height: 24px;

        margin-right: 10px;

        object-fit: contain;
    }

    .link .wetransfer-logo {
    width: 24px;
    height: 24px;

    margin-right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.link .wetransfer-logo svg {
    width: 24px;
    height: 24px;

    display: block;
}

    /* Footer */

    .footer {
        margin-top: 5px;

        color: #666;
        font-size: 11px;
    }

    /* Mobiel */

    @media (max-width: 600px) {

        body {
            padding: 20px 10px;
        }

        h1 {
            font-size: 27px;
        }

        .header p {
            font-size: 13px;
        }

        .search-container {
            width: 100%;

            flex-direction: column;
            align-items: center;
        }

        .search-item {
            width: 100%;
            max-width: 350px;
        }

        .search-item form {
            flex: 1;
        }

        .search-container input {
            width: 100%;
        }

        .section {
            padding: 17px;
        }

        .link {
            padding: 9px 12px;
        }
    }