.about-page {
    background: linear-gradient(180deg, #fff 0%, #f8f2ff 100%);
    min-height: calc(100vh - 120px);
}

.about-hero {
    padding: 72px 0 36px;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    line-height: 1.1;
    color: var(--purple-dark);
    margin-bottom: 16px;
}

.about-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 18px;
}

.about-story {
    padding: 18px 0 70px;
}

.about-story .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(106, 13, 173, 0.09);
    padding: 28px;
}

.about-card h2 {
    color: var(--purple-dark);
    margin-bottom: 14px;
    font-size: 28px;
}

.about-card p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.about-card ul {
    padding-left: 18px;
}

.about-card li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-story .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 48px 0 24px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-story {
        padding-bottom: 48px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card h2 {
        font-size: 24px;
    }
}
