:root {
  --bs-primary: #7a1f2b;
  --bs-primary-rgb: 13, 59, 102;
  --bs-link-color: #7a1f2b;
  --bs-link-hover-color: #f6c85f;
}

body {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 45%);
}

.hero-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at left center, rgba(13, 59, 102, 0.08), transparent 40%);
}

.hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.image-attribution {
  margin-top: 0.9rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.image-attribution a {
  color: inherit;
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.12) !important;
}

