
/* Layout fixes for Appointments grid and FAQ image placement */
#book-now {
  margin: 48px auto;
  max-width: 1040px;
  padding: 0 16px;
}
@media (min-width: 769px) {
  #book-now {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: start;
  }
}
#book-now .content { text-align: center; }
#book-now img.appt-photo {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  margin: 0;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* FAQ row with image on the right */
.faq-row {
  margin: 36px 0;
}
@media (min-width: 769px) {
  .faq-row {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: start;
  }
}
.faq-row img.faq-side {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
