/* About Page Specific Styles */
.about-header {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.mission-card, .value-card, .team-card {
    background: var(--bg);
    transition: var(--transition);
}

.mission-card:hover, .value-card:hover, .team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card .icon-box {
    width: 70px;
    height: 70px;
}

.blockquote {
    font-size: 1.1rem;
    font-style: italic;
}

/* Timeline Styling */
.timeline-item {
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    bottom: -20px;
    width: 2px;
    background: var(--border);
}

.timeline-item:last-child::after {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-header {
        padding: 80px 0 40px;
    }
    
    .value-card, .team-card {
        margin-bottom: 1rem;
    }
}