/* About Page Specific Styles */
body {
    background: #fafafa;
}

.about-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 64px;
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 168, 107, 0.2);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1) 0%, rgba(0, 168, 107, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    letter-spacing: -0.1px;
}

.story-section {
    background: white;
    padding: 120px 64px;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-content {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    letter-spacing: -0.2px;
}

.story-content p {
    margin-bottom: 24px;
}

.stats-section {
    padding: 100px 64px;
    background: linear-gradient(135deg, #00a86b 0%, #008f5c 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    max-width: 1000px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat-item {
    padding: 32px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    letter-spacing: -0.1px;
}

.team-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 64px;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #999;
}

.team-info {
    padding: 32px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.team-role {
    color: #00a86b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: -0.1px;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    letter-spacing: -0.1px;
}

@media (max-width: 1024px) {
    .about-section,
    .story-section,
    .stats-section,
    .team-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .story-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .stats-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
