.sa-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-hero .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.sa-hero-content {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 40px 30px;
  width: 85%;
  max-width: 700px;
  border-radius: 4px;
  text-align: center;
  margin: 40px auto;
}

.sa-hero-content h1 {
  color: white;
  font-size: var(--font-3xl);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 12px;
}

.sa-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-lg);
  line-height: 1.5;
  margin-bottom: 20px;
}

.sa-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--header-background-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: var(--font-md);
  transition: background-color 0.3s ease;
}

.sa-cta-btn:hover {
  background-color: white;
  color: #000;
}

.sa-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.sa-section-alt {
  background-color: #f5f5f5;
}

.sa-section-blue {
  background-color: var(--header-background-color);
  color: white;
  max-width: 100%;
  text-align: center;
}

.sa-section h2 {
  font-size: var(--font-2xl);
  font-family: "Montserrat", sans-serif;
  color: var(--header-background-color);
  margin-bottom: 20px;
  text-align: center;
}

.sa-section-blue h2 {
  color: white;
}

.sa-section p {
  font-size: var(--font-lg);
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.sa-section-blue p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sa-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sa-service-card {
  background: white;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}

.sa-service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.sa-service-card h3 {
  font-size: var(--font-lg);
  color: var(--header-background-color);
  margin-bottom: 6px;
}

.sa-service-card .sa-price {
  font-size: var(--font-md);
  color: #666;
  margin-bottom: 8px;
}

.sa-service-card p {
  font-size: var(--font-md);
  line-height: 1.5;
  color: #555;
}

.sa-trust-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.sa-stat {
  text-align: center;
}

.sa-stat-number {
  display: block;
  font-size: var(--font-3xl);
  font-weight: 700;
  color: white;
}

.sa-stat-label {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.85);
}

.sa-review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 20px;
  margin: 16px auto;
  max-width: 650px;
  text-align: left;
}

.sa-review-card .sa-stars {
  color: #ffcd3c;
  margin-bottom: 8px;
}

.sa-review-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-md);
  line-height: 1.6;
  font-style: italic;
}

.sa-review-card .sa-reviewer {
  font-style: normal;
  font-weight: 600;
  color: white;
  margin-top: 10px;
  font-size: var(--font-md);
}

.sa-neighborhoods {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.sa-neighborhoods li {
  background: white;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-size: var(--font-md);
  color: #333;
}

.sa-neighborhoods li::before {
  content: "\2713";
  color: var(--header-background-color);
  font-weight: bold;
  margin-right: 8px;
}

.sa-faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.sa-faq-item {
  margin-bottom: 20px;
}

.sa-faq-item h3 {
  font-size: var(--font-lg);
  color: var(--header-background-color);
  margin-bottom: 6px;
}

.sa-faq-item p {
  font-size: var(--font-md);
  line-height: 1.6;
  color: #555;
}

.sa-final-cta {
  text-align: center;
  padding: 50px 20px;
  background-color: white;
}

.sa-final-cta h2 {
  font-size: var(--font-2xl);
  font-family: "Montserrat", sans-serif;
  color: var(--header-background-color);
  margin-bottom: 12px;
}

.sa-final-cta p {
  font-size: var(--font-md);
  color: #555;
  margin-bottom: 24px;
}

.sa-contact-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sa-contact-options a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: var(--font-md);
  transition: all 0.3s ease;
}

.sa-contact-options .sa-cta-btn-primary {
  background-color: var(--header-background-color);
  color: white;
}

.sa-contact-options .sa-cta-btn-primary:hover {
  background-color: #3d6289;
}

.sa-contact-options .sa-cta-btn-secondary {
  background-color: transparent;
  color: var(--header-background-color);
  border: 2px solid var(--header-background-color);
}

.sa-contact-options .sa-cta-btn-secondary:hover {
  background-color: var(--header-background-color);
  color: white;
}

@media only screen and (max-width: 550px) {
  .sa-hero-content h1 {
    font-size: var(--font-2xl);
  }

  .sa-hero-content p {
    font-size: var(--font-sm);
  }

  .sa-trust-stats {
    gap: 20px;
  }

  .sa-stat-number {
    font-size: var(--font-2xl);
  }
}
