/* Header Section */
    .about-header {
        background: linear-gradient(135deg, #194768 0%, #2a5a8c 100%);
        padding: 60px 0 40px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .about-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Mission/Vision Cards */
    .mission-card {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(25, 71, 104, 0.08);
        height: 100%;
        transition: transform 0.3s ease;
        border-left: 4px solid #ffd700;
    }
    
    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(25, 71, 104, 0.15);
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,215,0,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .mission-icon i {
        font-size: 28px;
        color: #ffd700;
    }
    
    .mission-title {
        font-size: 22px;
        font-weight: 600;
        color: #194768;
        margin-bottom: 15px;
    }
    
    /* Stats Cards */
    .stat-card {
        background: #fff;
        border-radius: 10px;
        padding: 25px 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(25, 71, 104, 0.05);
        height: 100%;
    }
    
    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #ffd700;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 14px;
        color: #194768;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .stat-desc {
        font-size: 12px;
        color: #666;
    }
    
    /* Story Section */
    .story-section {
        padding: 60px 0;
        background: #f8f9fa;
    }
    
    .story-title {
        font-size: 32px;
        font-weight: 700;
        color: #194768;
        margin-bottom: 20px;
    }
    
    .story-text {
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .story-image {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        width: 100%;
        height: auto;
    }
    
    /* Values Cards - Simplified */
    .value-card {
        text-align: center;
        padding: 25px 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(25, 71, 104, 0.05);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .value-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(25, 71, 104, 0.1);
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,215,0,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }
    
    .value-icon i {
        font-size: 22px;
        color: #ffd700;
    }
    
    .value-title {
        font-size: 16px;
        font-weight: 600;
        color: #194768;
        margin-bottom: 8px;
    }
    
    .value-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
    }
    
    /* Team Cards - Compact */
    .team-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(25, 71, 104, 0.05);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(25, 71, 104, 0.15);
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: 0 auto 15px;
        overflow: hidden;
        border: 3px solid #ffd700;
    }
    
    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .team-name {
        font-size: 18px;
        font-weight: 600;
        color: #194768;
        margin-bottom: 3px;
    }
    
    .team-role {
        font-size: 13px;
        color: #ffd700;
        font-weight: 500;
        margin-bottom: 10px;
    }
    
    .team-bio {
        font-size: 12px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .team-social {
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .team-social a {
        width: 30px;
        height: 30px;
        background: #f0f0f0;
        color: #194768;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 13px;
    }
    
    .team-social a:hover {
        background: #194768;
        color: #ffd700;
        transform: translateY(-2px);
    }
    
    /* Section Titles - Cleaner */
    .section-title-light {
        font-size: 28px;
        font-weight: 600;
        color: #194768;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .section-desc {
        text-align: center;
        color: #666;
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .about-title {
            font-size: 32px;
        }
        
        .story-title {
            font-size: 26px;
        }
        
        .mission-card,
        .value-card,
        .team-card {
            margin-bottom: 20px;
        }
    }