
        :root {
            --eu06b-primary: #007bff;
            --eu06b-primary-dark: #0056b3;
            --eu06b-accent: #00d4ff;
            --eu06b-text-main: #2c3e50;
            --eu06b-text-light: #5a6c7d;
            --eu06b-bg-light: #f8fbff;
            --eu06b-bg-white: #ffffff;
            --eu06b-border-color: #e1e8ed;
            --eu06b-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
            --eu06b-radius: 16px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--eu06b-text-main);
            background-color: var(--eu06b-bg-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.3;
            font-weight: 700;
            word-break: keep-all;
            white-space: normal;
        }

        p {
            word-break: break-word;
            overflow-wrap: break-word;
            margin-bottom: 1.5rem;
        }

        /* Layout */
        .eu06b-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .eu06b-nav-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--eu06b-border-color);
            padding: 16px 0;
        }

        .eu06b-nav-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .eu06b-logo {
            min-width: 0;
            flex: 0 0 auto;
        }

        .eu06b-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .eu06b-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 16px;
            min-width: 0;
        }

        .eu06b-menu li {
            min-width: 0;
        }

        .eu06b-menu a {
            text-decoration: none;
            color: var(--eu06b-text-light);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .eu06b-menu a:hover {
            color: var(--eu06b-primary);
            background: rgba(0, 123, 255, 0.05);
        }

        .eu06b-menu a.active {
            color: var(--eu06b-primary);
            background: rgba(0, 123, 255, 0.1);
            font-weight: 700;
        }

        /* Hero Section */
        .eu06b-hero {
            padding: 96px 0 64px;
            text-align: center;
            background: radial-gradient(circle at top right, #eef7ff 0%, #f8fbff 100%);
            position: relative;
        }

        .eu06b-hero-badge {
            display: inline-block;
            background: rgba(0, 123, 255, 0.1);
            color: var(--eu06b-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .eu06b-hero h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            margin-bottom: 24px;
            color: #1a2a3a;
        }

        .eu06b-hero p {
            font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
            color: var(--eu06b-text-light);
            max-width: 800px;
            margin: 0 auto 48px;
        }

        /* Section Layouts */
        .eu06b-section {
            padding: 80px 0;
        }

        .eu06b-grid-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .eu06b-grid-col {
            flex: 1;
            min-width: 300px;
        }

        .eu06b-card {
            background: var(--eu06b-bg-white);
            border-radius: var(--eu06b-radius);
            padding: 32px;
            box-shadow: var(--eu06b-shadow);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .eu06b-card:hover {
            transform: translateY(-5px);
        }

        .eu06b-img-container {
            border-radius: var(--eu06b-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .eu06b-img-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features List */
        .eu06b-feature-list {
            list-style: none;
            margin-top: 24px;
        }

        .eu06b-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .eu06b-feature-dot {
            width: 8px;
            height: 8px;
            background: var(--eu06b-primary);
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        /* Archetypes Grid */
        .eu06b-archetype-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .eu06b-archetype-card {
            background: #fff;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--eu06b-border-color);
        }

        .eu06b-archetype-tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--eu06b-primary);
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        /* Footer */
        .eu06b-footer {
            background: #1a2a3a;
            color: #fff;
            padding: 64px 0 32px;
            margin-top: 80px;
        }

        .eu06b-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 48px;
        }

        .eu06b-footer-brand {
            flex: 1;
            min-width: 250px;
        }

        .eu06b-footer-brand h2 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .eu06b-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            flex: 2;
        }

        .eu06b-footer-group h4 {
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

        .eu06b-footer-group ul {
            list-style: none;
        }

        .eu06b-footer-group li {
            margin-bottom: 12px;
        }

        .eu06b-footer-group a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .eu06b-footer-group a:hover {
            color: #fff;
        }

        .eu06b-copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .eu06b-nav-container {
                padding: 0 16px;
            }
            .eu06b-menu {
                display: none; /* In real scenarios, a hamburger menu would be here */
            }
            .eu06b-section {
                padding: 48px 0;
            }
            .eu06b-grid-2 {
                flex-direction: column;
            }
        }
    