/* About Page Styles */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 100%);
    color: white;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.story-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}
.story-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    text-align: center;
}
.story-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: 1rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform var(--transition-normal);
}
.value-card:hover {
    transform: translateY(-4px);
}
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}
.value-card p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}
.stats-section {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h4 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
.tech-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}
.tech-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate-900);
    margin-bottom: 2rem;
    text-align: center;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.tech-item {
    padding: 1.5rem;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.tech-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-500);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tech-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}
.tech-item p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
}
.cta-section {
    background: var(--slate-900);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
}
.breadcrumb a {
    color: var(--primary-600);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
}
