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

    body, html {
        height: 100%;
        font-family: 'Arial', sans-serif;
        overflow-x: hidden;
    }

    .hero-container {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        background-image: url('../images/doorzetten_landingpage.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
    }

    /* Logo link toegevoegd */
    .logo-link {
        position: absolute;
        top: 20px;
        left: 20px;
        pointer-events: auto;
        z-index: 3;
    }

    .logo {
        width: 180px;
        height: auto;
        background:  #febf11;
        border-radius: 10px;
        border: 1px solid #2c2c2c;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .logo:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .buttons-container {
        position: absolute;
        top: 50%;
        right: 35%;
        display: flex;
        flex-direction: row;
        gap: 2rem;
        pointer-events: auto;
    }

    .cta-button {
        display: inline-block;
        padding: 1.2rem 2.5rem;
        font-size: 1.4rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 25px;
        transition: all 0.3s ease;
        border: 3px solid transparent;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        cursor: pointer;
        min-width: 220px;
        text-align: center;
        white-space: nowrap;
    }

    .btn-nieuwste {
        background: linear-gradient(45deg, #FFD700, #FFA500);
        color: #333;
        border-color: #FFD700;
    }

    .btn-nieuwste:hover {
        background: linear-gradient(45deg, #FFA500, #FFD700);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }

    .btn-eerdere {
        background: linear-gradient(45deg, #4A90E2, #357ABD);
        color: white;
        border-color: #4A90E2;
    }

    .btn-eerdere:hover {
        background: linear-gradient(45deg, #357ABD, #4A90E2);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    }

/* Responsive design */
    @media (max-width: 1200px) {
        .buttons-container {
            right: 5%;
        }
    }

    @media (max-width: 768px) {
        .hero-container {
            height: 100vh;
            min-height: 500px;
        }

        .logo {
            width: 160px;
        }

        .logo-link {
            top: 15px;
            left: 15px;
        }

        .buttons-container {
            position: absolute;
            bottom: 8%;
            left: 50%;
            transform: translateX(-50%);
            flex-direction: column;
            gap: 1rem;
            width: auto;
            max-width: none;
        }

        .cta-button {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            min-width: 200px;
        }

    }

    @media (max-width: 480px) {
        .hero-container {
            min-height: 400px;
        }

        .logo {
            width: 140px;
        }

        .logo-link {
            top: 10px;
            left: 10px;
        }

        .buttons-container {
            bottom: 5%;
            gap: 0.8rem;
        }

        .cta-button {
            padding: 0.9rem 1.8rem;
            font-size: 1rem;
            min-width: 180px;
        }
    }

    /* Extra kleine schermen */
    @media (max-width: 320px) {
        .buttons-container {
            bottom: 3%;
        }
        
        .cta-button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            min-width: 160px;
        }
    }

    /* Landscape orientation op mobiele apparaten */
    @media (max-height: 500px) and (orientation: landscape) {
        .buttons-container {
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            position: absolute;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .cta-button {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            min-width: 120px;
        }
    }

    /* Accessibility */
    .cta-button:focus, .logo:focus {
        outline: 3px solid #fff;
        outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
        .cta-button, .logo {
            transition: none;
        }
    }
