/* Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #2B3140;
    color: #1a1a1a;
}

/* Header */
.site-header {
    padding: 24px 40px;
    background-color: #E40049; /* ROOT rood */
}

.logo-link img {
    height: 64px;
    width: auto;
    display: block;
}

/* Main layout */
main {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Card */
.card {
    background-color: #32394A;
    padding: 48px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h1 {
    margin-top: 0;
    font-size: 32px;
    color: #ffffff;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #ffffff;
}

/* QuickSupport button */
.quicksupport {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.quicksupport a {
    display: inline-block;
    padding: 14px 28px;
    background-color: #E40049; /* zelfde ROOT rood */
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.quicksupport a:hover {
    background-color: #c8003f;
}

.card-text {
    max-width: 900px;      /* zelfde breedte als main */
    margin: 40px auto 0;   /* 40px ruimte boven, automatisch centreren */
    text-align: center;    /* tekst centreren */
    color: #ffffff;        /* witte tekst op donkere achtergrond */
    font-size: 16px;       /* goed leesbaar */
    line-height: 1.6;      /* voor betere leesbaarheid */
}

/* Footer */
.site-footer {
    position: fixed;       /* blijft altijd onderaan */
    bottom: 0;
    left: 0;
    width: 100%;           /* volledige breedte van het scherm */
    background-color: #E40049; /* zelfde rood als header */
    padding: 16px 40px;
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;   /* verticaal centreren logo en tekst */
    gap: 20px;             /* ruimte tussen logo en tekst */
    z-index: 1000;         /* boven andere content */
}

.footer-logo img {
    height: 64px;          /* zelfde als header-logo */
    width: auto;
    display: block;
}

.footer-info {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.4;
    white-space: nowrap;
}
