@charset "UTF-8";
 body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
      color: #333;
      line-height: 1.6;
    }
    header {
      background: black;
      color: yellow;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }
    header img {
      height: 60px;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }
    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #ffd166;
    }
    .hero {
      text-align: center;
      background: blue;
      color: white;
      padding: 6rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
    }
    .hero h1 {
      font-family: 'Stint Ultra Expanded', sans-serif;
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.5rem;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    .cta-button {
      display: inline-block;
      background: #ffd166;
      color: #333;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background: #ff8c42;
    }
    main {
      padding: 2rem;
      text-align: center;
    }
    main img {
      margin: 1rem;
      border-radius: 8px;
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1.5rem 1rem;
      margin-top: 2rem;
    }
    footer p {
      margin: 0;
    }