.about_header {
    background: linear-gradient(135deg, #0174C4 0%, #0a6cb0 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.about_header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about_header p {
    font-size: 20px;
    opacity: 0.9;
}

.about_section {
    margin-bottom: 60px;
}

.about_section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about_section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.feature_box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature_box i {
    font-size: 48px;
    color: #0174C4;
    margin-bottom: 20px;
}

.feature_box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature_box p {
    font-size: 14px;
    color: #666;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline_item {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

.timeline_item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: #0174C4;
}

.timeline_item:last-child::before {
    display: none;
}

.timeline_year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #0174C4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline_content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline_content p {
    font-size: 15px;
    color: #666;
}

.stats_section {
    background: linear-gradient(135deg, #0174C4 0%, #0a6cb0 100%);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

.stat_box {
    text-align: center;
    padding: 20px;
}

.stat_box .stat_number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat_box .stat_label {
    font-size: 18px;
    opacity: 0.9;
}