body {
    font-family: 'Inter', sans-serif;
    margin: 8px;
    padding: 0;
    line-height: 1.5;
}

img {
    width: 300px;
    height: auto;
    border: 1px solid #009FE3FF;
    margin: 5px 0 10px 0
}

h1 {
    font-size: 36px;
    font-family: 'Inter', sans-serif;
    color: #050F34FF;
    text-align: center;
    display: flex;
}

h2 {
    margin: 35px 5px 5px 0px;
}

a {
    text-decoration: none;
    color: #009FE3FF;
    font-weight: bold; 
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #009FE3FF;
    font-weight: bold;
}

ul li {
    padding: 5px 0;
    line-height: 1.5;
}

/* Keeps the public support page visually aligned with the KioskGrid landing and authentication pages. */
.support-page {
    min-height: 100vh;
    margin: 0;
    color: #14213d;
    background:
        radial-gradient(circle at 18% 14%, rgba(22, 104, 227, 0.1), transparent 30%),
        radial-gradient(circle at 86% 76%, rgba(16, 166, 166, 0.12), transparent 32%),
        linear-gradient(145deg, #ffffff 0%, #f6f9fd 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.support-page * {
    box-sizing: border-box;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 36px, 760px);
    margin: 0 auto;
    padding: 22px 0;
}

.support-brand,
.support-brand:visited {
    color: #14213d;
    font-size: 22px;
    font-weight: 900;
}

.support-login,
.support-login:visited {
    color: #5b6578;
    font-size: 14px;
}

.support-shell {
    width: min(100% - 36px, 760px);
    margin: 18px auto 48px;
}

.support-card {
    padding: clamp(28px, 6vw, 52px);
    border: 1px solid #dce4ef;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
}

.support-eyebrow {
    margin: 0 0 10px;
    color: #10a6a6;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.support-page h1 {
    display: block;
    margin: 0;
    color: #14213d;
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.05;
    text-align: left;
}

.support-intro {
    max-width: 620px;
    margin: 16px 0 0;
    color: #5b6578;
    font-size: 18px;
}

.support-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.support-topics > div {
    padding: 20px;
    border: 1px solid #dce4ef;
    border-radius: 8px;
    background: #f8fafc;
}

.support-page h2 {
    margin: 0;
    color: #14213d;
    font-size: 18px;
}

.support-topics p {
    margin: 8px 0 0;
    color: #5b6578;
    font-size: 14px;
}

.support-contact {
    margin-top: 28px;
    padding: 22px;
    border-radius: 8px;
    background: #e8f3ff;
}

.support-email,
.support-email:visited {
    display: inline-block;
    margin-top: 8px;
    color: #1668e3;
    font-size: clamp(18px, 4vw, 23px);
    overflow-wrap: anywhere;
}

.support-contact p {
    margin: 6px 0 0;
    color: #5b6578;
    font-size: 13px;
}

.support-details {
    margin-top: 28px;
}

.support-details ul {
    margin: 10px 0 0;
    padding-left: 22px;
    color: #5b6578;
}

.support-safety {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-left: 3px solid #10a6a6;
    color: #5b6578;
    background: #f5f8fb;
    font-size: 13px;
}

@media (max-width: 600px) {
    .support-header,
    .support-shell {
        width: min(100% - 28px, 760px);
    }

    .support-shell {
        margin-top: 6px;
    }

    .support-card {
        padding: 26px 22px;
    }

    .support-topics {
        grid-template-columns: 1fr;
    }
}
