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

    :root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(15, 23, 42, 0.95);
      /* backdrop-filter: blur(20px); */
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }
    		
    .logo {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.5rem;
			font-size: 1.8rem;
			font-weight: 800;
			cursor: pointer;
		}

		.logo-text {
			font-family: 'Space Grotesk', sans-serif;
			font-size: 48px;
			font-weight: 700;
			position: relative;
			display: flex;
			flex-direction: column;
			line-height: 0.9;
		}

		.logo-img {
			width: 64px;
			height: 64px;
			animation: float 6s ease-in-out infinite;
		}

		.word-business {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-weight: 500;
			font-size: 24px;
			letter-spacing: 8px;
			text-transform: uppercase;
			margin-bottom: 5px;
			animation: slideInLeft 1s ease-out;
		}

		.word-connector {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-weight: 700;
			font-size: 40px;
			letter-spacing: -2px;
			text-transform: lowercase;
			font-style: italic;
			animation: slideInRight 1s ease-out 0.3s both;
		}

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: #667eea;
      transform: translateY(-2px);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /* ✅ Blur effect on background content */
    body.menu-open #pageContent {
      filter: blur(5px);
      pointer-events: none;
      -webkit-user-select: none;
      /* Safari and older iOS */
      -moz-user-select: none;
      /* Firefox */
      -ms-user-select: none;
      /* Internet Explorer/Edge Legacy */
      user-select: none;
      transition: filter 0.3s ease;
    }

    /* ✅ Improve mobile menu appearance */
    .mobile-menu {
      position: fixed;
      top: 70;
      right: 0;
      width: 320px;
      /* height: 100vh; */
      background: rgba(15, 23, 42, 0.96);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      padding: 3rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 999;
      box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    }

    /* ✅ Active (Visible) */
    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .mobile-menu ul li {
      width: 100%;
      margin-bottom: 1.5rem;
    }

    .mobile-menu ul li a {
      display: block;
      width: 100%;
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }

    .mobile-menu ul li a:hover {
      color: #667eea;
    }

    .mobile-cta {
      margin-top: 2rem;
      width: 100%;
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.3);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Hero Section */
    .hero {
      min-height: 50vh;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23334155' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      animation: float 20s ease-in-out infinite;
    }


    @keyframes backgroundMove {
      0% {
        transform: translateX(0) translateY(0);
      }

      100% {
        transform: translateX(-60px) translateY(-60px);
      }
    }

    /* Floating Geometric Shapes */
    .geometric-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .shape {
      position: absolute;
      opacity: 0.1;
    }

    .shape-1 {
      top: 10%;
      left: 10%;
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 50%;
      animation: float1 6s ease-in-out infinite;
    }

    .shape-2 {
      top: 20%;
      right: 15%;
      width: 60px;
      height: 60px;
      background: var(--secondary-gradient);
      transform: rotate(45deg);
      animation: float2 8s ease-in-out infinite;
    }

    .shape-3 {
      bottom: 20%;
      left: 20%;
      width: 100px;
      height: 100px;
      border: 3px solid #667eea;
      border-radius: 50%;
      animation: float3 7s ease-in-out infinite;
    }

    .shape-4 {
      bottom: 30%;
      right: 10%;
      width: 0;
      height: 0;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent;
      border-bottom: 70px solid #764ba2;
      animation: float4 9s ease-in-out infinite;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-30px) rotate(180deg);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0px) rotate(45deg);
      }

      50% {
        transform: translateY(-40px) rotate(225deg);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(0px) scale(1);
      }

      50% {
        transform: translateY(-20px) scale(1.1);
      }
    }

    @keyframes float4 {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-35px) rotate(180deg);
      }
    }

    /* Particle System */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: #667eea;
      border-radius: 50%;
      animation: backgroundMove 20s linear infinite;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
      }
    }

    .hero-content {
      z-index: 2;
      max-width: 800px;
      padding: 0 1rem;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: slideInLeft 1s ease-out 0.3s both;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-100px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero p {
      font-size: 1.2rem;
      color: #cbd5e1;
      margin-bottom: 1rem;
      animation: slideInRight 1s ease-out 0.6s both;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .last-updated {
      font-size: 1rem;
      color: #94a3b8;
      font-style: italic;
    }

    /* Content Section */
    .content {
      padding: 5rem 5%;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      min-height: 100vh;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .content-wrapper {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid #e2e8f0;
    }

    .content h2 {
      font-size: 2rem;
      font-weight: 700;
      margin: 2rem 0 1rem 0;
      color: #1e293b;
      background: linear-gradient(135deg, #334155 0%, #475569 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 1.5rem 0 0.8rem 0;
      color: #334155;
    }

    .content p {
      color: #64748b;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .content ul,
    .content ol {
      margin: 1rem 0 1rem 2rem;
      color: #64748b;
    }

    .content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .highlight-box {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 1.5rem;
      border-radius: 15px;
      margin: 2rem 0;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }

    .highlight-box h3 {
      color: white;
      margin-top: 0;
    }

    .highlight-box p {
      color: rgba(255, 255, 255, 0.9);
    }

    .warning-box {
      background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      color: white;
      padding: 1.5rem;
      border-radius: 15px;
      margin: 2rem 0;
      box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    }

    .warning-box h3 {
      color: white;
      margin-top: 0;
    }

    .warning-box p {
      color: rgba(255, 255, 255, 0.9);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu {
        display: flex;
      }

      .mobile-menu ul li a:hover {
        color: #667eea;
      }

      .logo {
        font-size: 1.2rem;
      }

      .logo-img {
        height: 40px;
        width: 40px;
      }
      			
      .word-business {
				font-size: 16px;
				letter-spacing: 4px;
			}
			
			.word-connector {
				font-size: 24px;
			}

      .hero h1 {
        font-size: 2rem;
      }

      .content {
        padding: 3rem 1rem;
      }

      .content-wrapper {
        padding: 2rem;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .nav {
        padding: 0.8rem 3%;
      }

      .logo {
        font-size: 1.3rem;
      }

      .logo-img {
        height: 40px;
        width: 40px;
      }

      .nav-links {
        gap: 1.2rem;
      }

      .nav-links a {
        font-size: 0.95rem;
      }

      .hamburger span {
        width: 22px;
        height: 2px;
      }

      .mobile-menu ul li a:hover {
        color: #667eea;
      }
    }

    /* Scroll Animations */
    .scroll-animate {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.2s ease;
    }

    .scroll-animate.active {
      opacity: 1;
      transform: translateY(0);
    }