/* About Page Specific Styles */
.mission-section {
    padding: 4rem 2rem;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--main-color);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text p {
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    background: rgba(25, 230, 230, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    border-color: var(--main-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 230, 230, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--main-color);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--main-color);
    color: var(--bg-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 1;
    flex: 0 0 auto;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    width: 45%;
    margin: 0 2rem;
    border: 1px solid rgba(25, 230, 230, 0.2);
}

.timeline-content h3 {
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.leader-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--main-color);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .values-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-text {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .mission-section,
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .value-card,
    .leader-card {
        padding: 1.5rem;
    }
}