/* About Page Specific Styles */

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(255, 0, 255, 0.05));
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-content .lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

.story-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    margin: 24px 0;
}

.insight-list li {
    padding: 12px 0;
    color: var(--text-medium);
    line-height: 1.2;
}

.insight-list strong {
    color: var(--primary-purple);
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 24px;
}

/* Unique Angle Section */
.unique-angle {
    padding: 80px 0;
    background: var(--bg-white);
}

.angles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.angle-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    transition: var(--transition);
}

.angle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.angle-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.angle-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.angle-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-magenta));
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: 4px solid var(--bg-light);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(255, 0, 255, 0.05));
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.vision-content .lead {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.pillar {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

.pillar h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-purple);
}

.pillar p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .angles-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 2px;
    }
}