﻿/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 0;
}

.about-hero h1 {       color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero .tagline {       color: #fff;
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-hero .experience-badge {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 10px;
}

.content-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline-item {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.timeline-year {
    color: #3498db;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.value-box {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.value-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.value-box p {
    color: #555;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #3498db;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 1040px) {
.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #3498db;
    line-height: 1;
    margin-bottom: 10px;
    }
}

.stat-label {
    color: #555;
    font-size: 1.1em;
}

/* Content Card */
.content-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.content-card h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2em;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.content-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
    margin-bottom: 20px;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.8;
}

.quote-box:before {
    content: '"';
    font-size: 3em;
    opacity: 0.5;
    display: block;
    line-height: 0.5;
}

.quote-box:after {
    content: '"';
    font-size: 3em;
    opacity: 0.5;
    display: block;
    line-height: 0.5;
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.approach-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.approach-item h4 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.approach-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .values-grid,
    .stats-grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero h1 {
        font-size: 2em;
    }

    .about-hero .tagline {
        font-size: 1.1em;
    }

    .values-grid,
    .stats-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2em;
    }
}