/* style.css */
/* Enkel reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Bakgrundsfärg och grundinställningar för body */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f9fa;
    color: #333;
    line-height: 1.6;
}

/* Container för att centrera innehåll och ge maxbredd */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Topmeny */
nav {
    background-color: #fff;
    border-bottom: 2px solid #e1e4e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav li {
    margin-right: 20px;
}

nav a {
    display: block;
    padding: 15px 0;
    color: #0366d6;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #023658;
}

/* Rubriker */
h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    color: #222;
}

/* Länkar i brödtext */
a {
    color: #0366d6;
}

a:hover {
    text-decoration: underline;
}

/* Sektioner */
section {
    margin-bottom: 30px;
}

section p,
section ul,
section ol {
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 2px solid #e1e4e8;
    font-size: 0.9em;
    color: #666;
    margin-top: 40px;
}