* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
      color: #e0e0e0;
      overflow-x: hidden;
    }

    .parallax-section {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(0, 255, 208, 0.1) 0%, transparent 70%),
                  radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 20% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
      z-index: -1;
    }

    .section-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      z-index: 2;
    }

    h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #00ffd0, #007bff, #ff006e);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 30px rgba(0, 255, 208, 0.5);
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from { text-shadow: 0 0 20px rgba(0, 255, 208, 0.5); }
      to { text-shadow: 0 0 30px rgba(0, 255, 208, 0.8); }
    }

    h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #00ffd0;
      text-shadow: 0 0 10px rgba(0, 255, 208, 0.3);
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #b2f1ff;
    }

    ul {
      text-align: left;
      margin: 2rem 0;
      list-style: none;
    }

    li {
      margin: 1rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: #e0e0e0;
    }

    li::before {
      content: "▶";
      position: absolute;
      left: 0;
      color: #00ffd0;
      font-weight: bold;
    }

    .cta-btn {
      display: inline-block;
      background: linear-gradient(45deg, #00ffd0, #007bff);
      color: white;
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      margin: 1rem 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 255, 208, 0.3);
      text-transform: uppercase;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 255, 208, 0.5);
    }

    .testimonial {
      background: rgba(0, 255, 208, 0.1);
      border-left: 4px solid #00ffd0;
      padding: 2rem;
      margin: 2rem 0;
      font-style: italic;
      border-radius: 10px;
    }

    .testimonial cite {
      display: block;
      margin-top: 1rem;
      color: #00ffd0;
      font-size: 0.9rem;
    }

    .contact-form {
      background: rgba(0, 0, 0, 0.3);
      padding: 2rem;
      border-radius: 15px;
      border: 1px solid rgba(0, 255, 208, 0.2);
      margin-top: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 1rem;
      margin-bottom: 1rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 255, 208, 0.3);
      border-radius: 8px;
      color: #e0e0e0;
      font-size: 1rem;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #00ffd0;
      box-shadow: 0 0 10px rgba(0, 255, 208, 0.3);
    }

    .contact-form label {
      display: block;
      margin-bottom: 0.5rem;
      color: #00ffd0;
      font-weight: bold;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .stat-card {
      background: rgba(0, 255, 208, 0.1);
      padding: 2rem;
      border-radius: 15px;
      border: 1px solid rgba(0, 255, 208, 0.2);
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      color: #00ffd0;
      margin-bottom: 0.5rem;
    }

    .highlight-box {
      background: linear-gradient(45deg, rgba(0, 255, 208, 0.1), rgba(0, 123, 255, 0.1));
      border: 1px solid rgba(0, 255, 208, 0.3);
      border-radius: 15px;
      padding: 2rem;
      margin: 2rem 0;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }
      
      h2 {
        font-size: 1.5rem;
      }
      
      .parallax-section {
        padding: 1rem;
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }