
        .about-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .about-wrapper {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .about-hero {
            background: linear-gradient(135deg, #0A1F44 0%, #1a3a6b 100%);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }
        .about-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .about-hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }
        .about-section {
            padding: 60px 0;
        }
        .about-section-alt {
            background: #f5f5f5;
        }
        .about-wrapper h2 {
            font-size: 36px;
            color: #0A1F44;
            margin-bottom: 15px;
            text-align: center;
        }
        .about-wrapper h3 {
            font-size: 24px;
            color: #0A1F44;
            margin-bottom: 15px;
        }
        .about-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #555;
        }
        .about-img {
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            font-weight: bold;
            border-radius: 8px;
            min-height: 300px;
        }
        .about-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .about-stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .about-stat-card {
            background: #fff;
            padding: 30px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .about-stat-card:hover {
            transform: translateY(-5px);
        }
        .about-stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #1FBF83;
            margin-bottom: 10px;
        }
        .about-stat-label {
            font-size: 16px;
            color: #666;
        }
        .about-value-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 25px;
        }
        .about-value-card h3 {
            color: #1FBF83;
            margin-bottom: 15px;
        }
        .about-timeline {
            position: relative;
            padding: 40px 0;
        }
        .about-timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
        }
        .about-timeline-year {
            font-size: 32px;
            font-weight: bold;
            color: #1FBF83;
            text-align: right;
            padding-right: 40px;
        }
        .about-timeline-content {
            padding-left: 40px;
            border-left: 3px solid #1FBF83;
        }
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .about-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .about-card h3 {
            color: #1FBF83;
        }
        @media (max-width: 1199px) {
            .about-hero h1 {
                font-size: 36px;
            }
        }
        @media (max-width: 767px) {
            .about-hero {
                padding: 60px 0;
            }
            .about-hero h1 {
                font-size: 28px;
            }
            .about-hero p {
                font-size: 18px;
            }
            .about-wrapper h2 {
                font-size: 28px;
            }
            .about-wrapper h3 {
                font-size: 22px;
            }
            .about-two-col {
                grid-template-columns: 1fr;
            }
            .about-timeline-item {
                grid-template-columns: 1fr;
            }
            .about-timeline-year {
                text-align: left;
                padding-right: 0;
            }
            .about-img {
                min-height: 250px;
                font-size: 16px;
            }
            .about-stat-grid,
            .about-grid {
                grid-template-columns: 1fr;
            }
        }
    