        :root {
            --zest-blue: #0d6efd;
            --zest-dark: #212529;
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: #4a5568;
            line-height: 1.7;
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #0d6efd 0%, #003d99 100%);
            padding: 100px 0;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3rem;
        }

        /* Feature Cards */
        .feature-card {
            border: none;
            padding: 2rem;
            border-radius: 20px;
            background: #f8fafc;
            transition: 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: white;
            color: var(--zest-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
        }

        .mission-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--zest-blue);
        }

        /* Footer Customization */
        .footer {
            background: var(--zest-dark);
            color: #adb5bd;
            padding: 4rem 0;
        }

        .footer a {
            color: #dee2e6;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer a:hover {
            color: #0d6efd;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .about-hero {
                padding: 60px 0;
            }
        }