        /* Main About Page */
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .hero-section {
            background: linear-gradient(to right, rgba(0, 60, 113, 0.95), rgba(0, 41, 77, 0.95)), url('https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&q=80&w=1600') center/cover;
            border-radius: 12px;
            padding: 80px 50px;
            color: white;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .hero-section h1:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #FF6B35;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 25px;
            min-width: 180px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FF6B35;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-content h2 {
            color: #003c71;
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #FF6B35;
        }
        
        .about-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .mission-list {
            list-style: none;
            margin: 30px 0;
        }
        
        .mission-list li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
        }
        
        .mission-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #FF6B35;
            background: rgba(255, 107, 53, 0.15);
            width: 26px;
            height: 26px;
            border-radius: 50%;
            text-align: center;
            line-height: 26px;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Values Section */
        .values-section {
            background: #fff;
            border-radius: 12px;
            padding: 60px 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            color: #003c71;
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 4px;
            background: #FF6B35;
        }
        
        .section-header p {
            color: #666;
            max-width: 700px;
            margin: 15px auto 0;
            font-size: 1.1rem;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #eaeaea;
            transition: all 0.3s;
            border-top: 4px solid #003c71;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top-color: #FF6B35;
        }
        
        .value-icon {
            height: 120px;
            background: rgba(0, 60, 113, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #003c71;
        }
        
        .value-content {
            padding: 30px;
        }
        
        .value-title {
            color: #003c71;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .value-description {
            color: #555;
            line-height: 1.7;
        }
        