
        /* Test container for demonstration */
        .test-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #f5f5f5;
        }

        .delimiter {
            background: #FF0000;
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            margin: 10px 0;
            font-family: monospace;
        }

        /* BENEFITS SECTION STYLING */
        .instant-benefits {
            background: linear-gradient(135deg, #0A192F 0%, #1a365d 100%);
            color: #F4F4F9;
            padding: 2rem 0;
            margin: 1rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .benefits-headline {
            text-align: center;
            margin-bottom: 2rem;
        }

        .benefits-headline h2 {
            font-size: 1.4rem;
            color: #55B4B0;
            font-weight: 400;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .benefits-headline h3 {
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .empowerment-highlight {
            color: #55B4B0;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 1.1em;
        }

        /* ANIMATED BEFORE/AFTER BOXES */
        .transformation-example {
            margin: 2rem 0;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .example-box {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #55B4B0;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            opacity: 0;
            transform: scale(0);
            transition: all 0.8s ease-out;
        }

        .example-box.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        .before-box {
            border-color: #f59e0b;
            background: rgba(245, 158, 11, 0.1);
        }

        .after-box {
            border-color: #059669;
            background: rgba(5, 150, 105, 0.1);
        }

        .example-header {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .example-text {
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .example-reaction {
            font-style: italic;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* PLATFORM COMPARISON */
        .platform-comparison {
            text-align: center;
            margin: 2rem 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .platform-comparison p {
            margin: 0.5rem 0;
        }

        .platform-comparison strong {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .epic-contrast {
            color: #f59e0b;
            font-weight: 600;
        }

        .safety-buddy {
            color: #55B4B0;
            font-weight: 600;
        }

        .transform-highlight {
            color: #55B4B0;
            font-weight: 700;
            font-size: 1.1em;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .before-after-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .benefits-headline h2 {
                font-size: 1.2rem;
            }

            .benefits-headline h3 {
                font-size: 1.4rem;
            }

            .instant-benefits {
                padding: 1.5rem 0;
            }
        }

		