@media (max-width: 640px) {
  #order {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .price {
    margin-top: 8px;
  }
}

/* Service Details Grid Layout */
.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Service Cards */
.service-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%; /* Ensure equal height cards */
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  border-color: #008080;
}

.service-item h4 {
  color: #008080;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 2px solid #f0f5f5;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item h4 i {
  font-size: 1.25rem; /* Make icons slightly larger */
}

.service-item ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-item li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #4a4a4a;
  font-size: 0.95rem;
}

.service-item li:last-child {
  margin-bottom: 0;
}

/* YouTube Shorts Embed Container */
.youtube-shorts-wrapper {
  max-width: 320px;
  margin: 1rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #000;
  border: 1px solid #eaeaea;
}

.youtube-shorts-wrapper iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border: none;
}