.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.about-hero p {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.7);
}

.about-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 20px;
}

.story-image {
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 90%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.about-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-values h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--graphite);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    color: rgba(26, 26, 26, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.about-team {
    padding: 100px 0;
}

.about-team h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin-bottom: 24px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: var(--graphite);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.member-bio {
    color: rgba(26, 26, 26, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.about-stats {
    padding: 100px 0;
    background: var(--graphite);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
