.about-container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.4);
}

.hero-title {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Shared Card Styles */
.about-card {
    background: #ffffff; 
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.header-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    background: #eff6ff;
    padding: 12px;
    border-radius: 12px;
}

.section-title {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

/* Timeline History */
.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -29px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #bfdbfe;
}

.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.timeline-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Directors Grid */
.directors-subtitle {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.director-card:hover {
    background: #ffffff;
    border-color: #bfdbfe;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.director-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.director-info strong {
    color: #0f172a;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.director-info span {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .about-card {
        padding: 1.5rem;
    }
    .directors-grid {
        grid-template-columns: 1fr;
    }
}