html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    /* background: linear-gradient(135deg, #0d1b1e, #1b4332); */
    background-image: url("forest-lowerres.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}


/* background-image: url("background.jpg"); */

.puurverbonden {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.puurverbonden-inner {
    width: 90%;
    max-width: 1400px;
    min-height: 80vh;
    border: 3px solid #52b788;
    border-radius: 24px;
    padding: 50px 40px;
    background: rgba(15, 36, 30, 0.95);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.puurverbonden h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: #b7efc5;
}

.subtitle {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 50px;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #d8f3dc;
    line-height: 1.6;
}

.connections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    width: 100%;
    justify-items: center;
}

.connection-card {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 25px 20px;
    border-radius: 20px;
    background: #165437;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.connection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 255, 100, 0.25);
}

.connection-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #52b788;
}

.connection-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.connection-card p {
    font-size: 0.95rem;
    color: #d8f3dc;
    line-height: 1.4;
    margin-bottom: 15px;
}

.connection-card a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #52b788;
    color: #52b788;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.connection-card a:hover {
    background: #52b788;
    color: #0d1b1e;
}

@media (max-width: 768px) {
    .puurverbonden-inner {
        padding: 30px 20px;
    }

    .connections {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-card img {
        width: 150px;
        height: 150px;
    }

    .puurverbonden h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    .subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 30px;
    }

    .connection-card {
        width: 90%;
    }
}