           

           /* Header Styles */
           :root {
               /* Color system */
               --primary: #E13C3C;
               --primary-dark: #C53333;
               --primary-light: #E85C5C;
               --secondary: #181818;
               --secondary-light: #2C2C2C;
               --neutral-100: #F5F5F7;
               --neutral-200: #E5E5E5;
               --neutral-300: #D1D1D6;
               --neutral-400: #86868B;
               --neutral-500: #6E6E73;
               --neutral-600: #3D3D3D;
               --white: #FFFFFF;

               /* Spacing system (multiples of 8) */
               --space-1: 0.5rem;
               /* 8px */
               --space-2: 1rem;
               /* 16px */
               --space-3: 1.5rem;
               /* 24px */
               --space-4: 2rem;
               /* 32px */
               --space-5: 2.5rem;
               /* 40px */
               --space-6: 3rem;
               /* 48px */

               /* Other variables */
               --header-height: 4.5rem;
               --header-bg: rgba(255, 255, 255, 0.95);
               --header-bg-scrolled: rgba(255, 255, 255, 0.98);
               --shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
               --transition: 0.3s ease;
               --border-radius: 0.5rem;
           }

           /* Main header styles */
           .site-header {
               top: 0;
               left: 0;
               width: 100%;
               height: 65px;
               background-color: var(--header-bg);
               backdrop-filter: blur(10px);
               -webkit-backdrop-filter: blur(10px);
               z-index: 1000;
               transition: background-color var(--transition), box-shadow var(--transition);
           }

           .site-header.scrolled {
               background-color: var(--header-bg-scrolled);
               box-shadow: var(--shadow);
           }

           .header-container {
               max-width: 1200px;
               height: 100%;
               margin: 0 auto;
               padding: 0 var(--space-2);
               display: flex;
               align-items: center;
               justify-content: space-between;
           }

           /* Logo styles */
           .logo-container {
               display: flex;
               align-items: center;
           }

           .logo {
               display: flex;
               align-items: center;
               font-size: 1.5rem;
               font-weight: 600;
               color: var(--secondary);
               letter-spacing: -0.02em;
           }

           .logo-dot {
               display: inline-block;
               width: 12px;
               height: 12px;
               background-color: var(--primary);
               border-radius: 50%;
               margin-right: 0.25rem;
           }

           .logo-text {
               transform: translateY(1px);
           }

           /* Navigation styles */
           .main-nav {
               display: none;
           }

           .nav-list {
               display: flex;
               gap: var(--space-3);
           }

           .nav-item {
               position: relative;
           }

           .nav-link {
               color: var(--secondary);
               font-size: 1rem;
               font-weight: 500;
               padding: var(--space-1) 0;
               transition: color var(--transition);
           }

           .nav-link:hover {
               color: var(--primary);
           }

           .nav-link::after {
               content: '';
               position: absolute;
               bottom: -2px;
               left: 0;
               width: 100%;
               height: 2px;
               background-color: var(--primary);
               transform: scaleX(0);
               transform-origin: right;
               transition: transform 0.3s ease;
           }

           .nav-link:hover::after {
               transform: scaleX(1);
               transform-origin: left;
           }

           /* CTA button styles */
           .cta-container {
               display: none;
           }

           .cta-button {
               display: inline-block;
               background-color: #0154c5;
               color: var(--white);
               font-weight: 600;
               font-size: 0.95rem;
               padding: 0.7rem 1.2rem;
               border-radius: var(--border-radius);
               transition: background-color var(--transition), transform var(--transition);
           }

           .cta-button:hover {
               background-color: #0154c5;
               transform: translateY(-1px);
           }

           .cta-button:active {
               transform: translateY(0);
           }

           /* Mobile menu toggle */
           .mobile-menu-toggle {
               display: flex;
               flex-direction: column;
               justify-content: space-between;
               width: 30px;
               height: 20px;
               cursor: pointer;
               background-color: #fff;
               z-index: 1001;
               border: 1px #fff;
           }

           .bar {
               display: block;
               width: 100%;
               height: 2px;
               background-color: var(--secondary);
               transition: var(--transition);
           }

           .mobile-menu-toggle.active .bar:nth-child(1) {
               transform: translateY(8px) rotate(45deg);
           }

           .mobile-menu-toggle.active .bar:nth-child(2) {
               opacity: 0;
           }

           .mobile-menu-toggle.active .bar:nth-child(3) {
               transform: translateY(-8px) rotate(-45deg);
           }

           /* Mobile menu */
           .mobile-menu {
               position: fixed;
               top: var(--header-height);
               left: 0;
               width: 100%;
               height: 0;
               background-color: var(--white);
               overflow: hidden;
               transition: height var(--transition);
               z-index: 999;
               box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
           }

           .mobile-menu.active {
               height: calc(100vh - var(--header-height));
               overflow-y: auto;
           }

           .mobile-nav-list {
               padding: var(--space-3) var(--space-2);
               display: flex;
               flex-direction: column;
               gap: var(--space-3);
           }

           .mobile-nav-link {
               display: block;
               font-size: 1.2rem;
               font-weight: 500;
               color: var(--secondary);
               padding: var(--space-1) 0;
               transition: color var(--transition);
           }

           .mobile-nav-link:active {
               color: var(--primary);
           }

           .mobile-nav-cta {
               margin-top: var(--space-2);
           }

           .mobile-cta-button {
               display: inline-block;
               background-color: var(--primary);
               color: var(--white);
               font-weight: 600;
               font-size: 1rem;
               padding: 0.8rem 1.5rem;
               border-radius: var(--border-radius);
               transition: background-color var(--transition);
           }

           .mobile-cta-button:active {
               background-color: var(--primary-dark);
           }

           /* Media Queries */
           @media (min-width: 768px) {
               .main-nav {
                   display: block;
               }

               .cta-container {
                   display: block;
               }

               .mobile-menu-toggle {
                   display: none;
               }

               .mobile-menu {
                   display: none;
               }
           }

           @media (min-width: 992px) {
               .header-container {
                   padding: 0 var(--space-4);
               }

               .nav-list {
                   gap: var(--space-4);
               }

               .nav-link {
                   font-size: 1rem;
               }

               .cta-button {
                   padding: 0.45rem 1.5rem;
                   font-size: 0.9rem;
               }
           }

           @media (min-width: 1200px) {
               .header-container {
                   padding: 0 var(--space-2);
               }
           }

           html {
               scroll-behavior: smooth;
           }

           #signupForm {
               scroll-behavior: smooth;
           }

           .form-container {
               width: 100%;
               max-width: 500px;
               margin: 0 auto;
               box-shadow: 0px 1px 10px 1px #ebebeb !important;
           }

           .form-header {
               margin-bottom: 1.5rem;
           }

           .footer-risk-disclaimer {
               text-align: center;
               font-size: 11px;
               color: #777;
               padding: 10px;
               background: #f8f8f8;
           }

           .footer-risk-disclaimer a {
               color: #555;
               text-decoration: underline;
           }

           .form-header h1 {
               font-size: 1.5rem;
               font-weight: bold;
               color: #000;
               line-height: 1.3;
           }

           .signup-form {
               background: white;
               border-radius: 14px;
               padding: 1rem;
           }

           .input-group {
               position: relative;
               margin-bottom: 1rem;
               display: flex !important;
               margin-right: 15px;
               margin-left: 15px;
           }

           .input-field {
               width: 100%;
               padding: 1rem;
               font-size: 1rem;
               border: none;
               background: #f0f0f0;
               border-radius: 5px;
               transition: background 0.2s;
           }

           .input-field:focus {
               outline: none;
               background: #e8e8e8;
           }

           .phone-group {
               display: flex;
               gap: 0.5rem;
               margin-right: 15px;
               margin-left: 15px;
           }

           .country-select-container {
               position: relative;
           }

           .selected-country {
               display: flex;
               align-items: center;
               padding: 1rem;
               background: #f0f0f0;
               border-radius: 5px;
               cursor: pointer;
               font-weight: bold;
               height: 100%;
           }

           .country-dropdown {
               display: none;
               position: absolute;
               top: 100%;
               left: 0;
               width: 300px;
               max-height: 300px;
               background: white;
               border-radius: 5px;
               box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
               z-index: 100;
               overflow: hidden;
           }

           .country-dropdown.show {
               display: block;
           }

           .search-container {
               padding: 10px;
               border-bottom: 1px solid #eee;
           }

           #countrySearch {
               width: 100%;
               padding: 10px;
               border: 1px solid #ddd;
               border-radius: 5px;
               font-size: 14px;
           }

           .country-list {
               max-height: 250px;
               overflow-y: auto;
           }

           .country-item {
               display: flex;
               align-items: center;
               padding: 10px 15px;
               cursor: pointer;
               transition: background 0.2s;
           }

           .country-item:hover {
               background: #f5f5f5;
           }

           .country-flag {
               margin-right: 10px;
               font-size: 1.2rem;
               margin-bottom: -5px;
           }

           .cta-section {
               background: linear-gradient(135deg, #46a24e 0%, #35841e 100%);
               padding: 2rem 0rem;
               text-align: center;
               color: white;
           }

           .cta-section h2 {
               font-size: 2.5rem;
               margin-bottom: 1.5rem;
           }

           .cta-section p {
               font-size: 1.2rem;
               margin-bottom: 2rem;
               max-width: 800px;
               margin-left: auto;
               margin-right: auto;
           }

           .country-name {
               flex: 1;
               text-align: left;
               font-size: 14px;
           }

           .country-dial {
               color: #666;
               font-size: 14px;
           }

           .phone-input {
               flex: 1;
               padding: 1rem;
               font-size: 1rem;
               border: none;
               background: #f0f0f0;
               border-radius: 5px;
           }

           .phone-input:focus {
               outline: none;
               background: #e8e8e8;
           }

           .submit-button {
               width: 100%;
               padding: 1rem;
               font-size: 1.1rem;
               font-weight: bold;
               color: white;
               background: #11bc01;
               border: none;
               border-radius: 5px;
               cursor: pointer;
               transition: opacity 0.2s;
               margin-top: 0.5rem;
           }

           .submit-button:hover {
               opacity: 0.9;
           }

           .terms {
               margin-top: 1rem;
               font-size: 0.8rem;
               color: #666;
               text-align: center;
               margin-right: 15px;
               margin-left: 15px;
           }

           .terms a {
               color: #000;
               text-decoration: none;
               font-weight: 500;
           }

           .terms a:hover {
               text-decoration: underline;
           }

           .preloader {
               display: none;
               position: fixed;
               top: 0;
               left: 0;
               width: 100%;
               height: 100%;
               background-color: rgba(0, 0, 0, 0.5);
               z-index: 9999;
           }

           .preloader-content {
               position: absolute;
               top: 50%;
               left: 50%;
               transform: translate(-50%, -50%);
           }

           .spinner {
               width: 40px;
               height: 40px;
               border: 4px solid rgba(255, 255, 255, 0.3);
               border-radius: 50%;
               border-top: 4px solid white;
               animation: spin 1s linear infinite;
           }

           @keyframes spin {
               0% {
                   transform: rotate(0deg);
               }

               100% {
                   transform: rotate(360deg);
               }
           }

           /* Responsive styles */
           @media (max-width: 480px) {
               .signup-form {
                   padding: 0.2rem;
               }

               .form-header h1 {
                   font-size: 1.4rem;
               }

               .country-dropdown {
                   width: 250px;
               }
           }



           @media screen and (min-width:768px) {
               .video-des {
                   max-width: 400px;
                   min-width: 400px;
                   margin-right: 20px;
               }

               .video-des2 {
                   display: flex;
                   flex-wrap: nowrap;
               }
           }

           @media screen and (max-width:768px) {
               .video-des {

                   margin-right: 20px;
               }

               .video-des2 {}
           }

           