body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
}

#hero {
    text-align: center;
    background-image: url(hero.png);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
}

#steps-content {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  align-items: center;
}

.hero-content {
    background-color: rgba(227, 166, 23, 0.7); /* Semi-transparent yellow */
    padding: 1rem 4rem;
    border-radius: 10px;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.hero-content h1 {
    color: #fff;
    margin: 0;
    font-size: 4rem;
    font-weight: 900;
}

.hero-content p {
    color: #fff;
    margin: 10px 0;
}

button {
    background-color: #e3a617;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#hero-content-wrap {
    top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5rem;
    flex-basis: 100%;
    justify-content: space-evenly;
}

.step {
    min-width: 20%;
}

.step h3 {
    color: #e3a617;
    margin-bottom: 5px;
}

.step p {
    margin: 0;
}

/* Steps section */
#steps {
    text-align: center;
    background: #e3bb53;
    padding: 1rem;
    width: 60%;
}

.step {
    background-color: #fff6d5; /* Light yellow background */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.step h3 {
    color: #e3a617;
    margin-bottom: 5px;
}

.step p {
    margin: 0;
}

#steps button {
    background-color: #e3a617;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

/* Nav */
nav {
    background-color: #fff6d5; /* Same yellow as the rest of the site */
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: rgba(227, 166, 23, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky; /* Make the nav sticky */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure nav is above other content */
}

nav .logo-link {
    font-weight: 900;
    color: white;
    font-style: italic;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; /* Align items to the end (right) */
    align-items: center; /* Vertically center items */
}

nav li {
    display: inline;
    margin-left: 20px; /* Space between menu items */
}

nav a {
  text-decoration: none;
  color: black;
}

nav button {
    text-decoration: none;
    color: white;
    background-color: #b58412; /* Button background */
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

nav a:hover, nav button:hover {
    background-color: #d3b015; /* Slightly darker yellow on hover */
}

@media screen and (max-width: 800px) { /* Adjust the max-width as needed */
    nav a, nav button {
        font-size: 12px;
    }

    nav .logo-link {
        font-size: 1.2rem;
    }

    #steps-content {
      flex-direction: column;
      align-items: normal;
    }

    .hero-content {
      padding: 0.5rem 2rem;
      padding-top: 1rem;
      gap: 1rem;
    }

    .hero-content h1 {
      font-size: 1.5rem;
    }

    .hero-content-wrap {
      gap: 1rem;
    }

    #hero {
      background-size: contain;
    }

}
