.plant-info {
  max-width: 640px;
  background-color: #f6fbf5;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(86, 111, 74, 0.15);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plant-photo {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.plant-description {
  font-size: 1rem;
  color: #4a7050;
  line-height: 1.8;
  text-align: left;
}

.photo-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-bottom: 1rem;
}

.arrow-down {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #61C892; 
}
