.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
}

.about-content {
    padding: 80px 20px;
    background: var(--wfs-darker);
}

/* Story Section */
.story-section {
    margin-bottom: 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    color: var(--wfs-yellow);
    font-size: 2rem;
    margin-bottom: 30px;
}

.story-content p {
    color: var(--wfs-light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wfs-yellow);
    margin-bottom: 10px;
    white-space: nowrap;
}

.stat-label {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

/* Timeline */
.timeline-section {
    margin: 100px 0;
}

.timeline-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 120px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wfs-yellow), rgba(229, 199, 56, 0.2));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -68px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--wfs-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(229, 199, 56, 0.2);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -52px;
    top: 17px;
    width: 52px;
    height: 2px;
    background: rgba(229, 199, 56, 0.3);
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 5px;
    width: 50px;
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wfs-yellow);
}

.timeline-content {
    flex: 1;
    padding: 25px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(26, 26, 26, 0.7);
    border-color: rgba(229, 199, 56, 0.3);
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--wfs-white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--wfs-light-gray);
    margin: 0;
    line-height: 1.6;
}

/* Values */
.values-section {
    margin: 100px 0;
}

.values-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team */
.team-section {
    margin: 100px 0;
    text-align: center;
}

.team-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.team-intro {
    color: var(--wfs-light-gray);
    margin-bottom: 50px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-stat {
    padding: 30px;
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
}

.team-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wfs-yellow);
    margin-bottom: 10px;
}

.team-stat .label {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

/* CTA */
.about-cta {
    text-align: center;
    padding: 60px;
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.about-cta h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-cta p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 80px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: -68px;
    }
    
    .timeline-item::after {
        left: -52px;
        width: 32px;
    }
    
    .timeline-year {
        left: -80px;
        font-size: 1.1rem;
        width: 45px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}