

.page-bannerr4 {
  position: relative;
  width: 100%;
  height: 360px;
  background: url("img/img/bananabanner.png") center / cover no-repeat;
  margin-top: 80px;
  overflow: hidden;
}

/* ====================== Banana Varieties Section ====================== */
.banana-varieties-section {
  padding: 60px 0;
  text-align: center;
}

.banana-varieties-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banana-varieties-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.varieties-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.variety-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.variety-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.variety-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.variety-card h4 {
  font-size: 22px;
  margin: 15px 0 5px;
}

.variety-card p {
  font-size: 16px;
  padding: 0 15px 15px;
  color: #666;
}

/* ====================== Banana Usage Section ====================== */
.banana-usage-section {
  padding: 60px 0;
  text-align: center;
}

.banana-usage-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.usage-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.usage-cards li {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  width: 260px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.usage-cards li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.usage-cards li span {
  font-size: 24px;
}

