icon-box
        :root {
            --primary: #0d6efd;
            --secondary: #00c6ff;
            --dark: #0f172a;
            --light: #f8fafc;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f7fa;
        }

        .hero {
            background: linear-gradient(135deg, #0d6efd, #00c6ff);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, .1);
            border-radius: 50%;
            top: -200px;
            right: -150px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: .95;
        }

        .section-title {
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #6c757d;
            margin-bottom: 50px;
        }

        .icon-box {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: .4s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
            height: 100%;
        }

        .icon-box:hover {
            transform: translateY(-10px);
        }

        .icon-box i {
            font-size: 45px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .stats {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: #fff;
            padding: 80px 0;
        }

        .stat-item h2 {
            font-size: 3rem;
            font-weight: 800;
        }

        .value-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
            height: 100%;
        }

        .value-card i {
            color: #0d6efd;
            font-size: 40px;
            margin-bottom: 15px;
        }

        .cta {
            background: linear-gradient(135deg, #0d6efd, #00c6ff);
            color: #fff;
            padding: 80px 0;
            border-radius: 25px;
        }

        .btn-custom {
            background: #fff;
            color: #0d6efd;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
        }

        .about-img {
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
        }
    