* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F8FFF2;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/******** LOGO ********/
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.logo {
  width: 70px;
}

/******** TITLE ********/
.title {
  font-size: 18px;
  font-weight: 600;
  color: #2B6D2E;
  margin-bottom: 30px;
}

/******** OPTION CARD ********/
.option-card {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 18px;
  margin-bottom: 22px;
  gap: 15px;
  cursor: pointer;
  box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.12);
  transition: .2s;
}

.option-card:hover {
  transform: translateY(-3px);
}

.option-card a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  width: 40px;
}

.green { background: #BFFDBF; }
.brown { background: #E1C0A1; }

/******** TEXT ********/
.text-group h3 {
  font-size: 16px;
  font-weight: 600;
  color: #3C3C3C;
}

.text-group p {
  font-size: 12px;
  color: #7A7A7A;
  margin-top: 3px;
}

.title-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.title-price h3 {
  font-size: 16px;
  font-weight: 600;
  color: #3C3C3C;
  margin: 0;
}

.price {
  font-size: 14px;
  font-weight: 600;
  color: #4A8A4D;
}
