* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  body {
    background-color: #ffae00;
    color: #333;
  }

  /* Navigation Bar */
  nav {
    background-color: #ffae00;
    color: rgb(255, 166, 0);
    padding: 1rem;
    text-align: center;
  }
  nav a {
    color: rgb(255, 153, 0);
    margin: 0 1rem;
    text-decoration: none;
  }
  nav a:hover {
    text-decoration: underline;
  }

  /* Hero Section */
  .hero {
    background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff52');
    background-size: cover;
    background-position: center;
    color: rgb(255, 187, 0);
    text-align: center;
    padding: 5rem 1rem;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  .hero button {
    background-color: #ff4b5c;
    color: rgb(255, 153, 0);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  .hero button:hover {
    background-color: #e0434a;
  }

  /* Footer */
  footer {
    background-color: #333;
    color: rgb(255, 153, 0);
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
  }