.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.25rem 0; /* 100px */
}

.section--white {
  background-color: #ffffff;
}

.section--tint {
  background-color: #f0f4f8;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: flex-start;
}

.two-column > * {
  min-width: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2.75rem;
  align-items: flex-start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.section-divider--white path {
  fill: #ffffff;
}

.section-divider--tint path {
  fill: #f0f4f8;
}

.site-footer {
  background-color: #e5e7eb;
  border-top: 1px solid #d1d5db;
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0;
  text-align: center;
}

.site-footer__links,
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-footer__links a,
.site-footer__legal a {
  font-size: 0.9rem;
  color: #4b5563;
}

.site-footer__links a:hover,
.site-footer__legal a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 960px) {
  .two-column,
  .benefit-grid,
  .service-grid,
  .review-grid,
  .contact-layout,
  .info-grid,
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit-grid,
  .service-grid,
  .review-grid {
    row-gap: 1.25rem;
  }

  .site-footer__links,
  .site-footer__legal {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

