    /* Override base styles for this specific page */
    .main-content {
        margin-top: 0;
        min-height: 100vh;
    }

    /* Animated Background Elements */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.02) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.01) 50%, transparent 70%),
            linear-gradient(-45deg, transparent 30%, rgba(59, 130, 246, 0.01) 50%, transparent 70%);
        background-size: 100px 100px, 150px 150px;
        pointer-events: none;
        z-index: 1;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
        padding: 8rem 0 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e40af, #3b82f6, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease 0.2s both;
    }

    /* Content Sections */
    .content-section {
        padding: 5rem 0;
        position: relative;
        z-index: 2;
    }

    .content-section:nth-child(even) {
        background: #f8fafc;
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

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

    .section-subtitle {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Feature Cards */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid rgba(59, 130, 246, 0.1);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .feature-description {
        color: #64748b;
        line-height: 1.7;
    }

    /* Warning Box */
    .warning-box {
        background: #fef3cd;
        border: 2px solid #f59e0b;
        border-radius: 12px;
        padding: 2rem;
        margin: 3rem 0;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .warning-icon {
        color: #f59e0b;
        font-size: 1.5rem;
        margin-top: 0.2rem;
    }

    .warning-content h3 {
        color: #92400e;
        margin-bottom: 0.5rem;
    }

    .warning-content p {
        color: #92400e;
        line-height: 1.6;
    }

    /* Detection Types */
    .detection-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .type-card {
        background: #ffffff;
        border: 2px solid #fee2e2;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .type-card.gun {
        border-color: #fecaca;
    }

    .type-card.weapon {
        border-color: #fed7aa;
    }

    .type-card.knife {
        border-color: #fde68a;
    }

    .type-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
    }

    .type-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ef4444, #dc2626);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 2rem;
    }

    .type-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .type-description {
        color: #64748b;
        line-height: 1.6;
    }

    /* How It Works */
    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .step-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.05);
        position: relative;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        margin: 0 auto 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .step-description {
        color: #64748b;
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        padding: 5rem 0;
        text-align: center;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        color: #3b82f6;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .cta-button:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 1rem 0;
        color: #64748b;
        font-size: 0.9rem;
        position: relative;
        z-index: 2;
        margin-top: 80px;
    }

    .breadcrumb a {
        color: #3b82f6;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

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

        .feature-grid,
        .detection-types {
            grid-template-columns: 1fr;
        }

        .hero-section {
            padding: 6rem 0 3rem;
        }
    }
