/* ======================================================================= */
/*                        INDEX ABOUT SECTION STYLES                       */
/* ======================================================================= */

/* Tombstone: Extracted from index.html inline styles */

/* About section timeline integration */
#about .timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

#about {
    padding-top: 0.9rem;
}

/* About section content styling */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0rem 0 2rem;
}

.about-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.about-overview h3 {
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.about-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission-vision {
    margin-bottom: 3rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-values {
    margin-bottom: 3rem;
}

.about-values h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-muted-color);
    font-size: 1rem;
    line-height: 1.6;
}

.about-differentiators {
    margin-bottom: 3rem;
}

.about-differentiators h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.differentiator-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.differentiator-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.differentiator-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.about-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.about-stats h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-overview h3 {
        font-size: 1.6rem;
    }
    
    .about-values h3,
    .about-differentiators h3,
    .about-stats h3 {
        font-size: 1.6rem;
    }
    
    .about-stats {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-overview p {
        font-size: 1rem;
    }
    
    .mission-card,
    .vision-card,
    .value-item {
        padding: 1.5rem;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
}