/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #F4E9D8; /* lys beige som logo-baggrund */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: #192630; /* mørk blågrå tekst */
}

.wrapper {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    width: 100%;
    padding: 40px 28px 32px;
}

.header {
    display: flex;
    justify-content: flex-start; /* Flytter logoet til venstre */
    align-items: center;
    margin-bottom: 30px;
}

.logo img {
    max-height: 120px; /* Justér efter behov */
    width: auto;
}


.content {
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info {
    margin-top: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.contact-info i {
    margin-right: 6px;
}

.contact-info a {
    color: #192630;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsiv til mobil */
@media (max-width: 600px) {
    .wrapper {
        padding: 28px 18px 22px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .contact-info {
        max-width: 100%;
    }
}
