    <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;
        }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Hero Section */
        .hero {
            background: #F5F4F2;
            color: #303030;
            padding: 60px 0;
        }

		.final-cta {
 background: #F5F4F2 !important;
    color: #232323 !important;
    text-align: center !important;
    padding: 80px 0 !important;
}
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .hero-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .hero-image {
            flex: 1;
            min-width: 250px;
            text-align: center;
            max-width: 316px;
        }
        
        .hero-text h1 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

         .section-content {

                     border: solid 2px #232323;
    padding: 30px;
    border-radius: 5px;
         }


        .btn {
            display: inline-block;
            padding: 8px 19px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #303030;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #b30000;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #303030;
            border: 2px solid #303030;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: var(--secondary);
        }

         .benefit-item {
            margin-bottom: 10px;
          }
        
        /* 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);
        }
        
        /* Section Styles */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Feature Section */
        .features {
            background-color: var(--light);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* How It Works */
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            margin-bottom: 15px;
        }
        
        /* Use Cases */
        .use-cases {
            background-color: var(--light);
        }
        
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .use-case {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .use-case-icon {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        /* Smart Contract Section */
        .smart-contract {
            background: #F5F4F2;
            color: #232323;
        }
        
        .contract-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contract-text {
            flex: 1;
            min-width: 300px;
        }
        
        .contract-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        /* Trust Section */
        .trust-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }
        
        .trust-logo {
            height: 60px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .trust-logo:hover {
            opacity: 1;
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-item {
            margin-bottom: 20px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        /* Demo Section */
        .demo-container {
            text-align: center;
        }
        
        .demo-video {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-text, .hero-image {
                flex: 100%;
                padding-right: 0;
                text-align: center;
                margin: auto;
                margin-bottom: 20px;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .contract-content {
                flex-direction: column;
            }
        }

    </style>