* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #eeeeee;
    color: #656567;
  }
  
  .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* HEADER */
  .header {
    text-align: center;
    padding: 30px 20px;
  }
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .header .logo h1 {
    letter-spacing: 3px;
  }
  .header .logo .logo-box {
    width: 30px;
    height: 30px;
    background: #d10015;
    transform: rotate(45deg);
  }
  .header .logo img {
    width: auto;
    height: 200px;
  }
  .header .tagline {
    margin-top: 10px;
    font-size: 12px;
    color: #00285b;
    letter-spacing: 2px;
  }
  
  /* HERO */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
    gap: 40px;
  }
  .hero .hero-content {
    max-width: 500px;
  }
  .hero .hero-content .badge {
    display: inline-block;
    background: #d10015;
    color: #000;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero .hero-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero .hero-content h2 span {
    color: #d10015;
  }
  .hero .hero-content p {
    color: #00285b;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .hero .hero-content .btn {
    display: inline-block;
    background: #d10015;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
  }
  .hero .hero-content .btn:hover {
    opacity: 0.85;
  }
  .hero .hero-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(145deg, #111c30, #0b1220);
    border-radius: 20px;
    position: relative;
  }
  .hero .hero-image .helmet {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px;
    height: 250px;
    background: #d10015;
    border-radius: 50% 50% 20% 20%;
    overflow: hidden;
  }
  .hero .hero-image .helmet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* FOOTER */
  .footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: #0e2f5c;
    font-size: 13px;
    color: #eeeeee;
  }
  .footer .item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
    .hero-image {
      width: 100%;
      height: 250px;
    }
    .hero-content h2 {
      font-size: 36px;
    }
    .footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    .footer .item {
      display: flex;
      justify-content: center;
      width: 100%;
    }
  }