.about-highlight {
  background: var(--color-primary);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.about-highlight p {
  margin: 0;
  font-size: 1.1rem;
}

.service-detail-list {
  display: grid;
  gap: 2rem;
}

.service-detail {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-detail p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.service-detail p:last-child {
  margin-bottom: 0;
}

.service-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: justify;
  hyphens: auto;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.contact-page-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-page-grid {
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.4fr);
    align-items: stretch;
  }
}

.contact-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 0;
}

@media (min-width: 768px) {
  .contact-page-sidebar {
    height: 100%;
  }

  .contact-page-sidebar .map-embed {
    flex: 1 1 auto;
    min-height: 220px;
  }
}

.contact-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
}

.contact-card--info {
  flex-shrink: 0;
}

.contact-card--form {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 768px) {
  .contact-card--form {
    height: 100%;
  }

  .contact-card--form .contact-form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .contact-card--form .contact-form > .row {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .contact-card--form .contact-form-message {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .contact-card--form .contact-form-message textarea {
    flex: 1 1 auto;
    min-height: 8rem;
    resize: vertical;
  }
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-card a {
  font-weight: 600;
}
