html {
    scroll-behavior: smooth;
}

@media (min-width: 1101px) {
    html {
        scroll-snap-type: y proximity;
    }
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #f8fafc, #e2e8f0);
    color: #1f2937;
    line-height: 1.6;
    /* Ta bort eventuell overflow för bättre scroll snap */
    overflow-x: hidden;
}

section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
}

h1,
h2,
h3 {
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

p2 {
    margin-bottom: 1em;
    font-size: small;
}

section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}