/* Modern About page styling */

.about-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 1.5rem 0 1.25rem;
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
}

/* Header */
.about-page .page-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.about-page .page-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.about-page .page-subtitle {
    font-size: 0.98rem;
    color: #6b7280;
}

/* Content */
.about-page .page-content {
    background: radial-gradient(circle at top left, #ffffff 0, #f9fafb 45%, #ffffff 100%);
    border-radius: 18px;
    padding: 1.6rem 1.55rem;
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(148, 163, 184, 0.4);
    font-size: 0.98rem;
    line-height: 1.85;
    color: #111827;
}

.about-page .page-content p + p {
    margin-top: 0.8rem;
}

/* Section headings */
.about-page .page-content h2 {
    font-size: 1.35rem;
    margin: 1.6rem 0 0.6rem;
    font-weight: 700;
    color: #111827;
}

.about-page .page-content h2:first-child {
    margin-top: 0;
}

/* Lists */
.about-page .page-content ul {
    margin: 0.75rem 0 0.75rem 1.1rem;
    padding: 0;
}

.about-page .page-content li {
    margin-bottom: 0.45rem;
}

/* Highlighted badge text, if any */
.about-page strong {
    font-weight: 700;
    color: #0f172a;
}

/* Small schema / technical note text */
.about-page .schema-note {
    margin-top: 1.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-page {
        padding: 1.1rem 0 1.25rem;
    }

    .about-page .page-content {
        padding: 1.3rem 1.15rem;
        border-radius: 16px;
    }

    .about-page .page-title {
        font-size: 1.85rem;
    }
}
