/* Grundlayout */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #E0DAD6;
    color: #1f2933;
}



/* Centrering */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* Card */
.content-card {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Tekst */
.content-card p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.content-card h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: #0f172a;
}

.content-card ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.content-card li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Mobil */
@media (max-width: 600px) {
    .content-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
}