/* Modern & Stilren Integritetspolicy */
:root {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --primary: #2563eb;
    --border: #e2e8f0;
}

body {
    background-color: var(--bg-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

#container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    border: 1px solid var(--border);
}

/* Rubriker */
h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

h2:first-of-type {
    font-size: 2.5rem;
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Brödtext */
p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

em {
    font-style: normal;
    font-size: 0.9rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 2rem;
}

/* Listor */
ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem 0;
}

li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Custom modern list-punkt (bullet) */
li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

li strong {
    color: var(--text-main);
}

/* Länkar & Footer */
a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 3rem 0 1.5rem 0;
}

hr + p {
    font-size: 0.85rem;
    text-align: center;
    color: #94a3b8;
}

/* Mobilanpassning */
@media (max-width: 840px) {
    #container {
        margin: 1rem;
        padding: 1.75rem;
        border-radius: 12px;
    }
    
    h2:first-of-type {
        font-size: 2rem;
    }
}