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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#1f2937;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    min-height:100vh;
}

.container{
    background:#ffffff;

    padding:60px;

    max-width:800px;
    width:90%;

    text-align:center;

    border-radius:16px;

    /* Lidt mørkere kant */
    border:1px solid #c7d2df;

    /* Blød skygge */
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

/* Andelskyen-blå */
h1{
    font-size:3rem;
    color:#0f4c81;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    font-size:1.2rem;
    margin-bottom:40px;
}

h2{
    font-size:2rem;
    margin-bottom:30px;
}

p{
    font-size:1.15rem;
    line-height:1.7;
    margin-bottom:20px;
}

.status{
    margin-top:40px;
    display:inline-block;

    background:#eef6ff;
    color:#0f4c81;

    padding:15px 25px;

    border-radius:10px;

    font-weight:bold;
}

footer{
    margin-top:30px;

    text-align:center;

    color:#6b7280;
    font-size:.95rem;
}
