    /* Face Identification & Management Page Styles */
    .face-hero {
        padding: 6rem 0 4rem;
        text-align: center;
        background: white;
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1200px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .face-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
        z-index: 1;
    }

    .face-hero > * {
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        padding: 12px 24px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
        border: 1px solid rgba(59, 130, 246, 0.2);
        backdrop-filter: blur(10px);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
        50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    }

    .face-hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e293b, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .face-hero-subtitle {
        font-size: 1.25rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.6;
    }

    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        min-width: 180px;
        justify-content: center;
    }

    .cta-primary {
        background: #3b82f6;
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        background: #2563eb;
    }

    .cta-secondary {
        background: white;
        color: #3b82f6;
        border: 1px solid #e2e8f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .cta-secondary:hover {
        background: rgba(59, 130, 246, 0.05);
        transform: translateY(-2px);
        border-color: #3b82f6;
    }

    /* Features Timeline */
    .features-section {
        padding: 6rem 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: #64748b;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .features-timeline {
        position: relative;
        margin-top: 4rem;
    }

    .features-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #3b82f6, #06b6d4);
        transform: translateX(-50%);
    }

    .timeline-item {
        display: flex;
        margin-bottom: 4rem;
        position: relative;
        min-height: 200px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        z-index: 20;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }

    .timeline-content {
        flex: 1;
        max-width: 45%;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
        margin: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: right;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    }

    .timeline-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .timeline-content p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Feature Tags */
    .feature-tags {
        display: flex;
        gap: 8px;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .timeline-item:nth-child(even) .feature-tags {
        justify-content: flex-end;
    }

    .tag {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .tag-new {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        animation: glow 2s infinite;
    }

    @keyframes glow {
        0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.5); }
        50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
    }

    /* Feature Highlight */
    .feature-highlight {
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
    }

    .feature-highlight p {
        margin-bottom: 1rem;
        color: #1e293b;
        font-weight: 500;
        line-height: 1.6;
    }

    .feature-cta-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        padding: 8px 16px;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(59, 130, 246, 0.2);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .feature-cta-link:hover {
        background: rgba(59, 130, 246, 0.15);
        color: #1e40af;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

    /* Overview Grid */
    .overview-section {
        padding: 6rem 0;
        background: white;
        border-radius: 12px;
        margin: 2rem auto;
        max-width: 1200px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .overview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
    }

    .overview-card {
        background: rgba(248, 250, 252, 0.8);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 2.5rem;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .overview-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #06b6d4);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .overview-card:hover::before {
        transform: scaleX(1);
    }

    .overview-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 2rem;
    }

    .overview-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .overview-card p {
        color: #64748b;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    /* Final CTA Section */
    .final-cta {
        background: #3b82f6;
        border-radius: 12px;
        padding: 4rem 2rem;
        text-align: center;
        margin: 4rem auto;
        max-width: 1200px;
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .final-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .final-cta p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .final-cta .cta-button.primary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .final-cta .cta-button.primary:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .final-cta .cta-button.secondary {
        background: white;
        color: #3b82f6;
        border: 2px solid white;
    }

    .final-cta .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .face-hero {
            padding: 4rem 0 3rem;
            margin: 1rem;
        }

        .face-hero-title {
            font-size: 2.5rem;
        }

        .hero-cta {
            flex-direction: column;
            align-items: center;
        }

        .overview-section,
        .final-cta {
            margin: 2rem 1rem;
            padding: 3rem 1rem;
        }

        .overview-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .final-cta h2 {
            font-size: 2rem;
        }

        /* Timeline mobile adjustments */
        .features-timeline::before {
            left: 30px;
            transform: none;
        }

        .timeline-item {
            flex-direction: column !important;
            align-items: flex-start;
            margin-bottom: 3rem;
            padding-left: 80px;
            min-height: auto;
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: left !important;
            max-width: 100% !important;
        }

        .timeline-icon {
            left: 30px !important;
            top: 20px !important;
            transform: translateX(-50%) !important;
            width: 60px;
            height: 60px;
            font-size: 1.2rem;
        }

        .timeline-content {
            max-width: 100% !important;
            width: 100%;
            margin-left: 0 !important;
            margin-right: 0 !important;
            margin-top: 20px;
        }

        .feature-tags {
            justify-content: flex-start !important;
        }
    }

    /* Scroll reveal animation */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }