body {
  background-color: var(--color-background);
}

.hero {
  padding-top: var(--space-16);
}

.hero-layout {
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }
}

.hero-content {
  max-width: 36rem;
}

.hero-list {
  max-width: 32rem;
}

.hero-media {
  flex: 1;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--color-text-muted);
}

.service-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
}

.service-card--link {
  display: flex;
  flex-direction: column;
}

.service-card--link .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card--link .btn {
  margin-top: auto;
}

.service-inline-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-layout,
.reference-layout,
.quote-layout,
.tips-layout {
  align-items: center;
}

.about-image-wrapper,
.reference-image-wrapper,
.quote-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-note,
.quote-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.business-card {
  height: 100%;
}

.business-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.cta-final {
  max-width: var(--container-width);
}

.final-cta-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .final-cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.tips-extra {
  display: flex;
}

@media (max-width: 767px) {
  .hero {
    padding-top: var(--space-12);
  }

  .hero-layout {
    text-align: left;
  }

  .final-cta-card {
    text-align: left;
  }
}
