:root {
    --text-color: #334155;
    --heading-color: #0f172a;
    --muted-color: #64748b;
    --border-color: #e2e8f0;
    --bg-color: #ffffff;
    --accent-color: #6b21a8;
    /* Subtle purple for links */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    background: #fafafa;
}

.logo {
    max-width: 150px;
    margin-bottom: 24px;
}

h1 {
    color: var(--heading-color);
    font-size: 24px;
    margin-bottom: 8px;
}

.description {
    color: var(--muted-color);
    margin-bottom: 32px;
}

.info-list {
    text-align: left;
    display: inline-block;
    width: 100%;
}

.info-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-color);
    margin-bottom: 4px;
}

.value {
    font-weight: 500;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 24px;
    }
}