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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #0a0a0a;
      color: white;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background: rgba(17, 17, 17, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .logo {
      height: 45px;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
      padding: 8px 0;
    }

    .nav-links a:hover {
      color: #dc143c;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #dc143c;
      transition: width 0.3s ease;
    }

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

    .nav-links a.active {
      color: #dc143c;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #fff;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(0, 0, 0, 0.8)),
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3), transparent);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        repeating-linear-gradient(
          90deg,
          transparent,
          transparent 100px,
          rgba(220, 20, 60, 0.03) 100px,
          rgba(220, 20, 60, 0.03) 101px
        );
      animation: slideBackground 20s linear infinite;
    }

    @keyframes slideBackground {
      0% { transform: translateX(0); }
      100% { transform: translateX(100px); }
    }

    .hero-content {
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #fff, #dc143c);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
    }

    .tagline {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      margin-bottom: 30px;
      color: #ccc;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .btn {
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn.primary {
      background: linear-gradient(135deg, #dc143c, #ff1744);
      color: white;
      box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    }

    .btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
    }

    .btn.secondary {
      background: transparent;
      color: white;
      border: 2px solid #dc143c;
    }

    .btn.secondary:hover {
      background: #dc143c;
      transform: translateY(-2px);
    }

    /* Content Sections */
    .content-section {
      padding: 80px 5%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 20px;
      color: #dc143c;
      position: relative;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(135deg, #dc143c, #ff1744);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: #aaa;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Feature Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 60px;
    }

    .feature-card {
      background: linear-gradient(145deg, #111, #1a1a1a);
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #222;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(135deg, #dc143c, #ff1744);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
    }

    .feature-icon {
      font-size: 3rem;
      color: #dc143c;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .feature-card p {
      color: #aaa;
      line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
      background: linear-gradient(135deg, #111, #1a1a1a);
      padding: 80px 5%;
      margin: 80px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #dc143c;
      margin-bottom: 10px;
      display: block;
    }

    .stat-label {
      font-size: 1.1rem;
      color: #ccc;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #dc143c, #ff1744);
      padding: 80px 5%;
      text-align: center;
      margin: 80px 0;
    }

    .cta-section h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 20px;
      color: white;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-section .btn {
      background: white;
      color: #dc143c;
      font-weight: 700;
    }

    .cta-section .btn:hover {
      background: #f5f5f5;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    footer {
      background: #111;
      padding: 40px 5%;
      text-align: center;
      border-top: 1px solid #222;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #dc143c;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .social-links a {
      color: #aaa;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      color: #dc143c;
      transform: translateY(-2px);
    }

    .footer-text {
      color: #666;
      font-size: 0.9rem;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        gap: 10px;
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        padding-top: 70px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 200px;
      }

      .content-section {
        padding: 60px 5%;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Animation Classes */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease;
    }

    .slide-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .slide-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s ease;
    }

    .slide-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }