:root {
  --max-w-5xl: 64rem; 
  --gap-6: 1.5rem;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --white: #ffffff;
  --radius: .5rem;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
}

.services-page {
  background: var(--gray-50);
  color: var(--gray-800);
}

.services-container {
  max-width: var(--max-w-5xl);
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .services-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.services-header {
  text-align: center;
  margin-bottom: 2rem;
}

.services-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--teal-600);
}

.services-subtitle {
  margin-top: .5rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-6);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: .5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-600);
}

.service-card p { 
  color: var(--gray-600); 
}

.service-card .muted {
  margin-top: 1rem;
  font-size: .875rem;
  color: #6b7280;
}

.service-card .row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .price { color: var(--teal-600); font-weight: 600; }

/* avoid global leakage */
.services-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
  border-radius: .375rem;
  font-size: .875rem;
  line-height: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}

.services-page .btn-primary {
  background: var(--teal-600);
  color: #fff;
}

.services-page .btn-primary:hover { 
  background: var(--teal-700); 
}

.services-page .btn-outline {
  border: 1px solid var(--teal-600);
  color: var(--teal-600);
  background: transparent;
}

.services-page .btn-outline:hover { 
  background: #f0fdfa; 
}

.membership {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: .5rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.membership h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-600);
}

.membership p { 
  margin-top: .5rem; 
  color: var(--gray-600); 
}

.membership-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { 
  .membership-grid { 
    grid-template-columns: repeat(3, 1fr); 
  } 
}

.plan {
  padding: 1rem;
  border: 1px solid var(--gray-100);
  border-radius: .375rem;
}

.plan h4 { 
  font-weight: 600; 
}

.plan .desc {
  margin-top: .25rem;
  color: var(--gray-600);
  font-size: .875rem;
}

.plan .amount { 
  margin-top: .5rem; 
  color: var(--teal-600); 
  font-weight: 600; 
}

.plan .features {
  margin-top: .5rem;
  margin-bottom: 0;
  padding-left: 1rem; /* indent list so custom bullets aren't flush to card edge */
  list-style: none; /* avoid double bullets since markup includes • */
}

.plan .features li {
  color: var(--gray-600);
  margin: .25rem 0;
  padding-left: .125rem; /* slight spacing after custom bullet */
}

.rentals { 
  margin-top: 2rem; 
  font-size: .875rem; 
  color: var(--gray-600); 
}

.rentals h3 { 
  font-weight: 600; 
  color: var(--gray-800); 
}

.services-footer {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--gray-500);
  font-size: .875rem;
}

.services-footer a { 
  color: var(--teal-600); 
  text-decoration: underline; 
}
