/* Page wrapper */
.model-detail-page {
  background-color: #f4f6f9;
  padding: 3rem 1rem;
  font-family: "Segoe UI", sans-serif;
  color: #030202;
}

/* Model title */
.model-detail-page h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #04615f;
  margin-bottom: 2.5rem;
}

/* Price list container */
#price-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Each service item */
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #04615f;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Service name */
.service-item span:first-child {
  font-weight: 600;
  color: #033632;
}

/* Service price */
.service-item span:last-child {
  font-weight: bold;
  color: #f69a4f;
}

/* category links */
.category-nav {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem 1rem;
  border-top: 2px solid #e0e0e0;
  background-color: #f4f6f9;
}

.category-nav h2 {
  color: #033632;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-links a {
  padding: 0.6rem 1.2rem;
  border: 2px solid #04615f;
  border-radius: 8px;
  background-color: white;
  color: #04615f;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-links a:hover {
  background-color: #6ac6bd;
  color: #030202;
  border-color: #033632;
}
