body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #f5f5f5;
    padding-top: 80px;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.reizen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reis {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.reis img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background: #0f4c75;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}