/* Pricing page styles */
.pricing-section {
  padding: 40px 0;
}

.services-page-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto 15px;
  color: var(--dark);
  font-weight: 700;
  display: block;
  width: 100%;
}

.pricing-packages {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.pricing-package-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pricing-package {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pricing-package-link:hover .pricing-package {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.pricing-image {
  flex: 0 0 200px;
  max-width: 200px;
}

.package-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.pricing-content {
  flex: 1;
}

.pricing-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  color: var(--primary);
}

.pricing-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: var(--text);
}

.pricing-cost {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 10px;
}

.pricing-fineprint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}


.services-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 20px;
  margin-top: 0;
}

.services-subtitle-running {
  margin-top: 10px;
}
