.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.story-content h2 {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.story-image {
    background: transparent;
    padding: 0;
    text-align: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.approach-list {
    max-width: 800px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.approach-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.approach-content h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
}

.approach-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: var(--spacing-md);
}

.why-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.why-list {
    margin-top: var(--spacing-md);
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 16px;
}

.why-list svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-image {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

@media (max-width: 900px) {

    .why-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .why-image,
    .story-image {
        order: -1;
    }
}