/* About Page Styles */
.about-main {
    margin-top: 80px;
}

.about-hero {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: #666;
    line-height: 1.8;
}

.timeline {
    padding: 4rem 1rem;
}

.timeline h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.year {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1rem;
}

.values {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.values h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.team-cta {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .timeline-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
