/* Moderne CSS Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.5; color: #333; background: #f9f9f9; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { background: #fff; padding: 20px 0; border-bottom: 3px solid #d4a373; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
#logo img { max-height: 60px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #555; font-weight: 600; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #d4a373; }

/* Hero & Sektioner */
.hero { padding: 60px 0; text-align: center; background: #eee; margin: 20px 0; border-radius: 8px; }
.content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
.image-box img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Footer */
footer { background: #333; color: #fff; padding: 30px 0; margin-top: 50px; text-align: center; font-size: 0.9rem; }

/* En specifik klasse til indrykkede lister */
.indryk {
    padding-left: 30px; /* Her styrer du præcis hvor langt de skal ind */
    margin-bottom: 5px;
    list-style-position: inside; /* Sikrer at prikken følger med ind */
}

.indryk li {
    margin-bottom: 5px;
    padding-left: 5px; /* Lille luft mellem prikken og teksten */
}

/* Mobil-tilpasning */
@media (max-width: 768px) {
    header .container, .content { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    nav ul { margin-top: 20px; }
    #logo { margin-bottom: 10px; }
}