body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F0F2F5; /* litt lysere og renere */
    color: #111;
}

/* Generelle seksjoner */
.section {
    padding: 32px 16px; /* mer kompakt */
    max-width: 1100px;
    margin: 20px auto; /* litt luft mellom seksjoner */
    background: rgba(255, 255, 255, 0.85); /* lett transparens */
    border-radius: 12px; /* mykere uttrykk */
    backdrop-filter: blur(6px); /* glass-effekt */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* subtil dybde */
}

/* Alternativ seksjon (lys variant) */
.section.alt {
    background: rgba(255, 255, 255, 0.95);
}

/* Typografi */
.section h2 {
    margin-bottom: 10px;
    font-size: 26px;
}

.section p,
.section li {
    margin-bottom: 6px;
    line-height: 1.5;
}

h1, h2, h3 {
    margin-bottom: 16px;
}
