.purple-blue-gradient {
            background: linear-gradient(135deg, #00f2fe 0%, #8A2387 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .bg-gradient-purple-blue {
            background: linear-gradient(135deg, #00f2fe 0%, #8A2387 100%);
        }

        .hero-about {
            background: url("<?php echo get_template_directory_uri(); ?>/assets/hero-bg-2.png") center/cover no-repeat;
            position: relative;
            padding-top: 12rem;
            padding-bottom: 8rem;
            color: white;
            text-align: center;
        }

        .mission-box {
            position: relative;
            padding: 4rem 2rem;
            border-radius: 16px;
            background: linear-gradient(135deg, #0A0A0A 0%, #1a1a24 100%);
            color: white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mission-box::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(138, 35, 135, 0.3);
            filter: blur(60px);
            border-radius: 50%;
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--color-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .checklist-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(138, 35, 135, 0.2);
        }

        .checklist-icon {
            font-size: 1.8rem;
            color: #8A2387;
            flex-shrink: 0;
            background: rgba(138, 35, 135, 0.1);
            padding: 0.5rem;
            border-radius: 50%;
        }