 <style>
        :root {
           --primary: #343434;
           --secondary: #003366;
           --accent: #df0000;
           --light: #f5f7fa;
           --dark: #333333;
           --gray: #000000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        p {
           margin-bottom: 10px;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
        }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .investor-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 27px 0 30px;
            text-align: center;
          z-index: 1;
        }
        
        .investor-header h1 {
       font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
        }
        
        .investor-header p {
           font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
        }
        
        /* Section Styles */
        .industry-section {
          padding: 39px 0;
        }
        
        .section-header {
            text-align: center;
          margin-bottom: 30px;
        }
        
        .section-header h2 {
           font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .divider {
            height: 3px;
            width: 80px;
            background: var(--accent);
            margin: 20px auto;
        }
        
        /* Overview Section */
        .overview-content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .overview-text {
            flex: 1;
            min-width: 300px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--light);
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: var(--secondary);
            font-weight: 600;
        }
        
        /* Solutions Section */
        .solutions-section {
            background-color: var(--light);
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .solution-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--secondary);
        }
        
        .solution-card:hover {
            transform: translateY(-5px);
        }
        
        .solution-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .solution-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .solution-card ul {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .solution-card li {
            margin-bottom: 8px;
            color: var(--gray);
        }
        
        /* Benefits Section */
        .benefits-content {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .benefits-list {
            flex: 1;
            min-width: 300px;
        }
        
        .benefit-item {
            display: flex;
            margin-bottom: 40px;
            align-items: flex-start;
        }
        
        .benefit-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-right: 20px;
            min-width: 50px;
        }
        
        .benefit-text h3 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .benefits-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .chart-container {
            width: 100%;
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
        }
        
        .chart-legend {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: white;
            border-radius: 4px;
        }
        
        .color-box {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            border-radius: 4px;
        }
        
        /* Token Allocation Section */
        .allocation-section {
            background-color: var(--light);
        }
        
        .allocation-content {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .allocation-details {
            flex: 1;
            min-width: 300px;
        }
        
        .allocation-chart {
            flex: 1;
            min-width: 300px;
        }
        
        .allocation-list {
            margin-top: 30px;
        }
        
        .allocation-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .allocation-item:last-child {
            border-bottom: none;
        }
        
        .allocation-name {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .allocation-percentage {
            color: var(--accent);
            font-weight: 700;
        }
        
        /* Market Opportunity Section */
        .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .market-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--accent);
        }
        
        .market-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .market-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .market-stat {
            display: flex;
            align-items: center;
            background: var(--light);
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
        }
        
        .market-stat i {
            font-size: 1.8rem;
            color: var(--accent);
            margin-right: 15px;
        }
        
        .market-stat-content h4 {
            margin: 0;
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .market-stat-content p {
            margin: 0;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .contact-section {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
        }
        
        .contact-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-text {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .contact-features {
            margin-top: 25px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature-item i {
            color: var(--accent);
            margin-right: 15px;
        }
        
        .contact-action {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .btn-primary, .btn-outline {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
            margin: 10px;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #b30000;
            transform: translateY(-3px);
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--secondary);
        }
        
        .contact-note {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        .contact-note a {
            color: white;
            text-decoration: none;
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sticky-cta:hover {
            background-color: #b30000;
            transform: translateY(-3px);
        }
        
        /* Financial Table */
        .financial-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .financial-table th {
            background-color: var(--secondary);
            color: white;
            text-align: left;
            padding: 15px;
        }
        
        .financial-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .financial-table tr:nth-child(even) {
            background-color: var(--light);
        }
        
        .financial-table tr:hover {
            background-color: #f0f4f8;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .investor-header {
                padding: 80px 0 60px;
            }
            
            .investor-header h1 {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .benefit-item {
                flex-direction: column;
            }
            
            .benefit-number {
                margin-bottom: 10px;
            }
            
            .overview-content {
                flex-direction: column;
            }
        }
    </style>