.page-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.about-section {
    background: radial-gradient(circle at top, #020617 0, #020617 30%, #020016 65%, #01010b 100%);
    color: #e5e7eb;
}

.about-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.about-card {
    max-width: 960px;
    padding: 2.8rem 2.6rem;
    margin: 0 auto;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.9),
        0 0 40px rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(18px);
}

.about-heading {
    font-size: 2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: #e5e7eb;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.9rem;
}

.about-body {
    font-size: 0.98rem;
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 1.5rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.about-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.about-stat-value {
    font-size: 0.9rem;
    color: #e5e7eb;
}




/* Responsive */

@media (max-width: 900px) {
    .page-section {
        padding: 3.5rem 1.25rem;
    }

    .about-card {
        max-width: 100%;
        padding: 2rem 1.7rem;
    }


    .about-stats {
        grid-template-columns: 1fr;
    }

}
