.about-page {
    max-width: 700px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-logo {
    width: 96px;
    height: 96px;

    margin: 0 auto 1rem;

    background-image: var(--logo-url);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.about-header h1 {
    margin-bottom: 0.5rem;
}

.about-header p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-stack {
    display: grid;
    gap: 1rem;
}

.about-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.about-item h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.about-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-footer {
    margin-top: 3rem;
}

.about-footer p {
    color: var(--text-muted);
    line-height: 1.6;
}