.fur-strand {
  position: relative;
}

.fur-strand img {
  position: absolute;
  left: -103px;
  bottom: 211px;
  z-index: 1;
  height: 100px;
}

.superfoods-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.species-image{
  position: absolute;
  left: -150px;
  bottom: -5px;
  z-index: 0;
  /* height: 200px; */
  height: 135px;
  object-fit: scale-down;
}

.species-image-two{
  position: absolute;
  right: -116px;
  bottom: -5px;
  z-index: 0;
  /* height: 200px; */
  height: 135px;
  object-fit: scale-down;
}

.food-wrapper{
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.food-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  gap: 34px;
  justify-content: center;
}

.food-container h2 {
  font-family: Azeret;
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
  color: #10462E;
  width: 100%;
}

.food-sub-container {
  width: 44%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.food-column {
  padding: 50px;
  border-radius: 60px;
  background-color: #F7F4EC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 708px;
}

.food-item {
  position: relative;
  padding: 10px 0px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.food-item.superfood {
  background-color: #97D2BE;
}

.food-item.avoid {
  background-color: #FFD6D1; 
}

.food-icon img {
  position: absolute;
  top: -17px;
  /* left: -9px; */
  left: -23px;
  width: 100px;
  height: auto;
  object-fit: contain;
}

.food-text{
  text-align: center;
}

.food-item h3 {
  margin: 0;
  font-family: Azeret;
  font-size: 25px;
  color: #10462E;
  padding: 0 60px;
}

.food-item p {
  margin: 0;
  font-family: Azeret;
  font-size: 12px;
  color: white;
  cursor: pointer;
  padding: 3px 50px;
}

.avoid.food-item p{
  color: #CB8E86;
}

.accordion-content {
  display: none;
  font-family: Azeret;
  font-size: 14px;
  color: #10462E;
  margin-top: 10px;
  font-style: italic;
}

.accordion-toggle.active::before {
  content: "";
  font-style: italic;
}

.food-item p::after{
  font-style: italic;
}

.accordion-content {
  display: none;
}

.accordion-content.show {
  display: block;
}


@media (max-width: 768px) {
  .superfoods-section {
    padding: 0;
  }
  .food-container {
    flex-direction: column;
    gap: 20px;
  }

  .food-sub-container {
    width: unset;
  }

  .food-column {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    height: 661px;
  }

  .food-container h2 {
    font-size: 28px;
  }

  .food-item h3 {
    font-size: 21px;
  }

  .food-item p {
    font-size: 10px;
    background-color: inherit;
  }

  .species-image {
    height: 103px;
    left: -37px;
    bottom: 18px;
    z-index: 1;
    position: absolute;
    width: 105px;

  }

  .species-image-two {
    height: 103px;
    right: 0;
    bottom: 18px;
    z-index: 10;
    position: absolute;
    width: 105px;
  }

  .food-icon img {
    width: 73px;
  }

  .fur-strand img {
    display: none;
    left: 92px;
    bottom: -26px;
    /* z-index: 10; */
    height: 100px;
    transform: rotate(13deg);
  }
}
