/* Light */
@font-face {
    font-family: 'DB Neo Screen Rounded';
    src: url('/assets/fonts/DBNeoScreenRounded-Light.woff2') format('woff2'),
        url('/assets/fonts/DBNeoScreenRounded-Light.woff') format('woff'),
        url('/assets/fonts/DBNeoScreenRounded-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: 'DB Neo Screen Rounded';
    src: url('/assets/fonts/DBNeoScreenRounded-Black.woff2') format('woff2'),
        url('/assets/fonts/DBNeoScreenRounded-Black.woff') format('woff'),
        url('/assets/fonts/DBNeoScreenRounded-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'DB Neo Screen Rounded', Arial, sans-serif;
    background: #f5f6f8;
    color: #222;
}

.page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
}

.header p {
    margin-top: 6px;
    color: #666;
    font-size: 14px;
}

.info-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 6px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card h2 {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.item {
    margin-bottom: 15px;
}

.item h3 {
    margin: 0 0 5px 0;
    font-size: 15px;
}

.item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.footer {
    text-align: center;
    margin-top: 30px;
}

.button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #d40511;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.button:hover {
    background: #a8030d;
}