.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 1;
}

.about-hero__title {
    font-size: var(--text-4xl);
    color: white;
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.about-hero__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: var(--leading-relaxed);
}

.breadcrumb {
    margin-bottom: var(--space-8);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    list-style: none;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-2);
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.about-section {
    padding: var(--space-16) 0;
}

.about-section--highlighted {
    background-color: var(--color-bg-subtle);
}

.about-section--accent {
    background-color: var(--color-accent-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-section--subtle {
    background-color: var(--color-bg-muted);
}

.about-section__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.about-section__title--centered {
    text-align: center;
}

.about-section__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-8);
    font-size: var(--text-lg);
}

.about-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    height: 100%;
    transition: box-shadow var(--transition-base);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
}

.about-card--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-card--full {
    text-align: center;
}

.about-card__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-list {
    list-style: none;
    margin-top: var(--space-6);
    padding-left: 0;
}

.about-list li {
    padding-left: var(--space-8);
    position: relative;
    margin-bottom: var(--space-3);
    color: var(--color-text-secondary);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: var(--text-lg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.partner-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.partner-card__name {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.partner-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

.transparency-links {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.about-cta {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-16) 0;
    text-align: center;
}

.about-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta__title {
    font-size: var(--text-3xl);
    color: white;
    margin-bottom: var(--space-4);
}

.about-cta__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
    .about-hero {
        padding: var(--space-12) 0 var(--space-8);
    }
    
    .about-hero__title {
        font-size: var(--text-3xl);
    }
    
    .about-section {
        padding: var(--space-12) 0;
    }
    
    .about-card {
        padding: var(--space-6);
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: var(--space-6);
    }
    
    .about-section--accent .grid,
    .about-section--highlighted .grid {
        display: flex;
        flex-direction: column;
    }
    
    .about-section--accent .about-image,
    .about-section--highlighted .about-image {
        order: -1;
    }
}