body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a192f, #172a45);
    color: #ccd6f6;
    margin: 0;
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  header {
    background: #0b1e33;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .logo::after {
    content: ".";
    color: #ff003c;
    animation: glow 2s infinite alternate;
  }
  
  @keyframes glow {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
  }
  
  .glitch {
    color: #ff003c;
    animation: flicker 1.2s infinite alternate;
  }
  
  @keyframes flicker {
    0% { opacity: 0.8; }
    100% { opacity: 0.2; }
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ff003c;
  }
  
  main {
    padding-top: 70px; /* Adjust for fixed header */
  }
  
  .hero {
    background: rgba(23, 42, 69, 0.7);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero button {
    background: #0b1e33;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .hero button:hover {
    background: #1c3b5e;
  }
  
  .press, .partners {
    padding: 2rem;
    background: rgba(10, 25, 47, 0.8);
  }
  
  .logo-bar img {
    height: 150px;
    margin: 0 10px;
  }
  
  footer {
    background: #0b1e33;
    color: #aaa;
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
  }
  
  /* Form Styles - Dark Theme */
  form {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(23, 42, 69, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ccd6f6;
  }
  
  input, 
  textarea,
  select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    color: #ccd6f6;
    transition: all 0.3s ease;
  }

  input::placeholder,
  textarea::placeholder {
    color: #8892b0;
  }
  
  input:focus, 
  textarea:focus,
  select:focus {
    outline: none;
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    background: rgba(10, 25, 47, 0.95);
  }
  
  button[type="submit"] {
    background: transparent;
    color: #00f0ff;
    border: 2px solid #00f0ff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    header {
      padding: 1rem;
    }
    
    .hero {
      padding: 3rem 1rem;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .press, .partners {
      padding: 1.5rem 1rem;
    }
    
    .logo-bar img {
      height: 100px;
      margin: 0 5px;
    }
    
    form {
      padding: 1rem;
    }
    
    input, 
    textarea,
    select {
      padding: 0.6rem;
      font-size: 16px; /* Prevent zoom on focus in iOS */
    }
    
    button[type="submit"] {
      width: 100%;
      padding: 0.8rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .hero button {
      width: 100%;
      max-width: 300px;
    }
    
    .logo-bar {
      flex-direction: column;
      align-items: center;
    }
    
    .logo-bar img {
      margin: 10px 0;
    }
    
    form {
      box-shadow: none;
      border-radius: 0;
      padding: 1rem 0.75rem;
    }
  }