/* About Page Styles - Dark Theme */

.page-hero {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 140px 24px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Content Sections */
.content-section {
    padding: 80px 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.content-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Values Section */
.values-section {
    padding: 80px 24px;
    background: var(--bg-card);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

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

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

.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 24px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    background: var(--bg-card);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    background: var(--secondary);
    border: 3px solid var(--accent);
}

.leader-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.leader-card .title {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.leader-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Global Section */
.global-section {
    padding: 80px 24px;
    background: var(--gradient);
    text-align: center;
}

.global-section .section-title {
    color: white;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 48px auto;
}

.global-stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.global-stat .label {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
}

.headquarters {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.headquarters h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.headquarters p {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .leadership-grid,
    .global-stats {
        grid-template-columns: 1fr;
    }
}
