* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #0f172a;
    color: #e5e7eb;
  }
  
  /* HERO SECTION */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
  }
  
  /* TEXT */
  .hero-content {
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-content h1 span {
    color: #38bdf8;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #94a3b8;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* BUTTONS */
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn.primary {
    background: #38bdf8;
    color: #020617;
  }
  
  .btn.primary:hover {
    background: #0ea5e9;
  }
  
  .btn.secondary {
    border: 2px solid #38bdf8;
    color: #38bdf8;
  }
  
  .btn.secondary:hover {
    background: #38bdf8;
    color: #020617;
  }
  
  /* IMAGE */
  .hero-image img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .hero-image img {
      width: 260px;
      height: 360px;
    }
  }
  