<style>
    /* General reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Poppins, 
      background-color: #4E0A04 ;
      color: white;
      height: 40px;
    }

    /* Header Navigation */
    header {
      background-color: #95760E;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
    }

    header img {
      height: 80px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li {
      display: inline;
    }

    nav ul li a {
      text-decoration: none;
      color: black;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #781818;
    }

  /* Hero Section */
.hero {
    background-color: #4E0A04;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    gap: 100px;
}

.hero-text {
    flex: 1;
    color: white;
    text-align: left;
    max-width: 45%;
    line-height: 1.4;
}

.hero-text h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
    color: rgb(213, 223, 131);
}

.hero-img {
    width: 35vw;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    flex-wrap: wrap;
    background: none;
}

/* Guide grid */
.featured {
      background-color:#740F06;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 100px 80px; 
      gap: 80px;
      flex-wrap: wrap;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  padding: 50px;
}

.guide {
  text-align: center;
}

.guide img {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.guide img:hover {
  transform: scale(1.05);
}

.guide-name {
  margin-top: 15px;
  background-color: #007b5e;
  color: white;
  font-weight: bold;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 1.1rem;
}

/* Button Section */
.cta {
  background-color:  #4E0A04;
  text-align: center;
  padding: 100px;
}

.cta button {
  background-color: #2d6b2d;
  border: none;
  padding: 15px 50px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta button:hover {
  background-color: #3c8c3c;
}

/* Existing Responsive design for guide grid */
@media (max-width: 900px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .guide img {
    width: 220px;
    height: 220px;
  }
}

/* --- ADDITIONAL RESPONSIVE DESIGN (HERO + HEADER) --- */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  header img {
    height: 70px;
    margin-bottom: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    padding: 60px 40px;
    gap: 50px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-img {
    width: 70%;
  }

  .cta {
    padding: 60px 30px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-img {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .cta button {
    width: 100%;
    max-width: 280px;
  }

  footer {
    font-size: 0.9rem;
  }
}

/* Footer */
footer {
  background-color: #bfa12d;
  text-align: center;
  padding: 15px;
  color: black;
  font-weight: bold;
}
</style>
