.guide-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center; /* Added to center align items vertically */
}

.item.price {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.price img, .content img {
  width: 100%;
  height: auto;
}

.price-number {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .guide-container {
    grid-template-columns: 1fr 1fr;
  }

  .item:nth-child(4n-3),
  .item:nth-child(4n-2) {
    grid-column: span 1;
  }

  .item:nth-child(4n-1),
  .item:nth-child(4n) {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .guide-container {
    grid-template-columns: 1fr;
  }
}

/* Holiday17 Title Image Change */

.holiday-title1 {
   margin: -165px 0px 0px 0px;
}

.holiday-title2 {
   display: none;


@media only screen and (max-width: 500px){
   .holiday-title1 {
     display: none; 
}

   .holiday-title2 {
     display: block;
     margin: -160px 0px 0px 0px; }
  }

/* Mother's Day 18 Title Image Change */

.mday18-title1 {
   margin: -170px 0px 0px 0px;
}

.mday18-title2 {
   display: none;
}

@media only screen and (max-width: 500px){
   .mday18-title1 {
     display: none;
   }

   .mday18-title2 {
     display: block;
     margin: -185px 0px 0px 0px;
   }
}