<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.0;
}

.hero-text h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
    color: rgb(213, 223, 131);
}

.hero-img {
    width: 45vw;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    flex-wrap: wrap;
    background: none;
}

    /* Featured Section */
    .featured {
      background-color:#740F06;
      display: flex;
      justify-content: space-between;
      align-items:flex-start;
      padding: 100px 80px; 
      gap: 50px;
      flex-wrap: wrap;
    }

.featured-img {
    width: 45vw;
    height: 25vw;
    border-radius: 20px;
    align-items:right;
    flex-wrap: wrap;
}

.featured-text {
  margin-top: 2px;
  font-size: 0.9rem;
  text-align: left;
  max-width: 100%;
  color: #fff;
}

/* New rule for each main section block */
.section-block {
    margin-bottom: 80px;
    overflow: auto;
}

.section-block h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    clear: both;
}

.section-img {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
    width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.content-text {
    overflow: ;
}

.section-block:after {
    content: "";
    display: table;
    clear: both;
}

.content-text h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-text p {
    margin-bottom: 15px;
}

    /* 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;
    }

    /* Footer */
    footer {
      background-color: #bfa12d;
      text-align: center;
      padding: 15px;
      color: black;
      font-weight: bold;
    }


/* ====================== */
/* RESPONSIVE DESIGN BELOW */
/* ====================== */

/* For tablets and smaller laptops */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
    gap: 50px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-img {
    width: 70%;
  }

  .featured {
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
  }

  .featured-img {
    width: 70%;
    height: auto;
  }

  .section-img {
    float: none;
    display: block;
    margin: 0 auto 30px auto;
    width: 80%;
  }

  .section-block h1 {
    text-align: center;
  }

  .cta {
    padding: 60px 20px;
  }
}

/* For mobile devices */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  header img {
    height: 60px;
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-img {
    width: 90%;
  }

  .featured {
    padding: 40px 20px;
  }

  .featured-img {
    width: 100%;
  }

  .section-block {
    padding: 0 20px;
  }

  .cta button {
    width: 100%;
    max-width: 300px;
  }

  footer {
    font-size: 0.9rem;
  }
}
</style>
