:root {
  --pink: #ED94A9;
  --teal: #218E9D;
  --white: #FFFFFF;
  --dark-teal: #176d77;
  --light-pink-bg: #fdf1f5;
  --light-teal-bg: #e6f4f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 70px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark-teal);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 4px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

#services {
  padding-top: 40px;
}

h1, h2, h3 {
  color: var(--teal);
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
  margin-top: 30px;
}

p {
  margin-bottom: 16px;
}

.center {
  text-align: center;
}

.hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta-button-row .button {
  margin: 0;
}

.service-card__body .cta-button-row {
  justify-content: flex-start;
}

.hero .cta-button-row {
  margin-top: 12px;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

.hero-social .button {
  margin: 0;
}

.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-primary:hover {
  background: #e47f98;
}

.btn-secondary {
  border: 2px solid var(--teal);
  color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: white;
}

.icon-button {
  padding: 14px 18px;
}

.icon-button .icon {
  width: 24px;
  height: 24px;
  display: block;
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 22px;
  height: 22px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.social-links a {
  display: inline-flex;
  color: var(--teal);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: var(--dark-teal);
  transform: scale(1.1);
  text-decoration: none;
}

.pink-section {
  background: var(--light-pink-bg);
  border-radius: 30px;
}

/* Homepage SEO intro – matches site bands, readable line length */
section.internal-links {
  max-width: 800px;
}

section.internal-links h2 {
  margin-bottom: 1.25rem;
}

section.internal-links p:last-child {
  margin-bottom: 0;
}

/* Landing pages (brisbane + areas): SEO band after article */
main.terms-page > section.internal-links {
  padding-top: 52px;
  padding-bottom: 56px;
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
}

main.terms-page > section.internal-links.pink-section {
  box-shadow: 0 10px 40px rgba(237, 148, 169, 0.12);
}

main.terms-page > section.internal-links h2.center {
  font-weight: 600;
  letter-spacing: -0.02em;
}

main.terms-page > section.internal-links p {
  line-height: 1.65;
}

.teal-section {
  background: var(--light-teal-bg);
  border-radius: 30px;
}

/* Homepage: layout rhythm, typography, banded sections */
body.page-home section#services {
  padding-top: 56px;
  padding-bottom: 72px;
}

body.page-home #services > h2.center {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

body.page-home #services > p.center {
  margin-bottom: 28px;
}

body.page-home #services > p.center a {
  font-weight: 500;
}

body.page-home .services-intro-lead {
  max-width: min(36rem, 100%);
  margin: -0.35rem auto 14px;
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--dark-teal);
  opacity: 0.95;
}

body.page-home .hero h1 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

body.page-home .hero > p {
  max-width: min(38rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

body.page-home .hero .cta-button-row {
  margin-top: 28px;
  margin-bottom: 8px;
  gap: 14px;
}

body.page-home .hero .cta-button-row + p {
  margin-top: 22px;
}

body.page-home .hero .cta-button-row + .hero-trust {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--dark-teal);
  opacity: 0.92;
  max-width: min(40rem, 100%);
}

body.page-home .hero .hero-trust + .hero-social {
  margin-top: 18px;
}

body.page-home .hero-social {
  margin-top: 32px;
}

body.page-home #book.section-book-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.page-home #book.section-book-cta > p {
  max-width: min(28rem, 100%);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

body.page-home #book.section-book-cta .form-container {
  margin-top: 26px;
}

body.page-home #book.section-book-cta .cta-button-row {
  gap: 14px;
}

.section-prose-narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-prose-narrow > p {
  margin-bottom: 18px;
}

.section-prose-narrow > h2 {
  margin-bottom: 16px;
}

.section-prose-narrow .features-list {
  margin-top: 24px;
  margin-bottom: 0;
}

.section-prose-narrow .features-list li {
  padding: 6px 0;
}

body.page-home section.internal-links.pink-section,
body.page-home section.internal-links.teal-section {
  padding-top: 52px;
  padding-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
}

body.page-home section.internal-links + section.internal-links {
  margin-top: 24px;
}

body.page-home section.internal-links.pink-section {
  box-shadow: 0 10px 40px rgba(237, 148, 169, 0.12);
}

body.page-home section.internal-links.teal-section {
  box-shadow: 0 10px 40px rgba(33, 142, 157, 0.1);
}

body.page-home section.internal-links h2.center {
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.page-home section.internal-links p {
  line-height: 1.65;
}

body.page-home section.internal-links p:not(.homepage-pill-links) {
  text-align: left;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

body.page-home .section-prose-readable > p,
body.page-home .section-prose-readable .features-list {
  text-align: left;
}

body.page-home .features-list--readable {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

body.page-home .features-list--readable li {
  padding: 5px 0;
  line-height: 1.45;
}

.homepage-pill-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

.homepage-pill-links a:not(.button) {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(237, 148, 169, 0.38);
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.homepage-pill-links a:not(.button):hover {
  border-color: var(--pink);
  box-shadow: 0 6px 20px rgba(237, 148, 169, 0.22);
  text-decoration: none;
}

#difference.teal-section {
  padding-left: clamp(22px, 4vw, 40px);
  padding-right: clamp(22px, 4vw, 40px);
}

#difference .features-list--readable {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

#difference .features-list li {
  padding: 5px 0;
}

.services-block--training {
  margin-top: 60px;
}

.services-block--grooming {
  margin-top: 40px;
}

.services-heading {
  margin-bottom: 20px;
  font-size: 2rem;
}

.services-heading--teal {
  color: var(--teal);
}

.services-coming-soon {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 500;
  margin: -0.5em 0 1em;
  letter-spacing: 0.05em;
}

.services-heading--pink {
  color: var(--pink);
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

.service-note {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--dark-teal);
  background: rgba(237, 148, 169, 0.12);
  border-radius: 14px;
  border-left: 4px solid var(--pink);
}

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

.services-grid--collapsible {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: white;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Homepage: calmer service rows — less “floating card” repetition */
body.page-home .services-block--grooming .service-card {
  box-shadow: none;
  border: 1px solid rgba(33, 142, 157, 0.14);
  border-radius: 16px;
}

body.page-home .services-block--training .service-card {
  box-shadow: none;
  border: 1px dashed rgba(33, 142, 157, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
}

.collapsible-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
  user-select: none;
}

.collapsible-card summary::-webkit-details-marker,
.collapsible-card summary::marker {
  display: none;
}

.collapsible-card summary:hover {
  background: rgba(0, 0, 0, 0.02);
}

.collapsible-card summary h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-card__header {
  flex: 1;
  min-width: 0;
}

.service-card__price {
  display: block;
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark-teal);
  opacity: 0.85;
}

.collapsible-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218E9D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}

.collapsible-card[open] .collapsible-card__icon {
  transform: rotate(180deg);
}

.services-block--grooming .collapsible-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ED94A9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-card__body {
  padding: 0 25px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card__body p {
  margin: 0;
  padding-top: 16px;
  font-weight: 400;
}

.service-card h3 {
  margin-top: 0;
}

.features-list {
  list-style: none;
  margin-top: 20px;
}

.features-list li {
  margin-bottom: 10px;
}

.form-container {
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
}

section a:not(.button) {
  color: var(--teal);
  text-decoration: none;
}

section a:not(.button):hover {
  text-decoration: underline;
}

/* Footer – pink to match nav */
.site-footer {
  background: var(--pink);
  color: var(--white);
  padding: 48px 24px 32px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 32px;
}

.footer-left {
  text-align: left;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--white);
}

.footer-abn {
  font-size: 0.9rem;
  opacity: 0.95;
  margin: 0 0 12px;
}

.footer-contact {
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-sep {
  margin: 0 10px;
  opacity: 0.8;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 4px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-footer {
  background: var(--white);
  color: var(--pink);
  margin: 0;
}

.btn-footer:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-teal);
}

.footer-seo-links {
  font-size: 0.8rem;
  opacity: 0.85;
  margin: 0 0 12px;
  text-align: center;
}

.footer-seo-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-seo-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  text-align: center;
}

/* Contact page */
.contact-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

.contact-page .center {
  max-width: 560px;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-block:last-of-type {
  border-bottom: none;
}

.contact-block h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--teal);
}

.contact-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 8px;
}

.contact-cta {
  margin-top: 36px;
  margin-bottom: 28px;
}

/* Terms & Conditions page */
.terms-page {
  padding: 40px 20px 60px;
}

.terms-article {
  max-width: 680px;
  margin: 0 auto;
}

.page-brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.terms-page h1 {
  margin-bottom: 12px;
}

.terms-intro {
  font-size: 1.05rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark-teal);
}

.terms-section {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.terms-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2 {
  font-size: 1.35rem;
  color: var(--teal);
  margin-bottom: 16px;
  margin-top: 0;
}

.terms-section h3 {
  font-size: 1.15rem;
  color: var(--teal);
  margin-top: 20px;
  margin-bottom: 12px;
}

.terms-section ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.terms-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-section p {
  margin-bottom: 12px;
  line-height: 1.65;
}

.terms-section p + ul {
  margin-top: 8px;
}

.terms-back {
  margin-top: 48px;
  margin-bottom: 0;
  text-align: center;
}

/* Services overview page */
.services-overview-note {
  background: var(--light-pink-bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 36px;
  border: 1px solid rgba(237, 148, 169, 0.3);
}

.services-overview-note p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-overview-card {
  display: block;
  background: var(--white);
  border: 2px solid var(--light-teal-bg);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: var(--dark-teal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-overview-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(33, 142, 157, 0.12);
  color: var(--dark-teal);
}

.service-overview-card h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--teal);
}

.service-overview-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.service-overview-price {
  display: block;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.service-overview-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pink);
}

.service-overview-card:hover .service-overview-link {
  text-decoration: underline;
}

/* Location / area page CTA block */
.location-cta {
  background: var(--light-teal-bg);
  border-radius: 20px;
  padding: 28px 24px !important;
  margin-top: 40px;
  border: none;
}

.location-cta__title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--teal);
}

.location-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 0;
}

.location-cta__buttons .button {
  margin: 0;
}

.footer-copy a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Footer: stack on mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
    gap: 28px;
  }

  .footer-left {
    text-align: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Tablet and below */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }

  .site-nav {
    padding: 12px 16px;
    gap: 4px 16px;
  }

  .site-nav a {
    padding: 10px 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }

  section {
    padding: 48px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .logo {
    max-width: 200px;
  }

  .button {
    margin: 8px 6px;
    padding: 12px 24px;
  }

  .hero-social {
    margin-top: 12px;
    gap: 8px;
  }

  .pink-section,
  .teal-section {
    border-radius: 20px;
  }

  .services-block--training {
    margin-top: 40px;
  }

  .services-block--grooming {
    margin-top: 32px;
  }

  .services-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .services-grid--collapsible {
    max-width: none;
  }

  .collapsible-card summary {
    padding: 16px 20px;
    gap: 12px;
  }

  .collapsible-card summary h3 {
    font-size: 1.15rem;
  }

  .service-card__body {
    padding: 0 20px 16px;
  }

  .service-card__body p {
    padding-top: 12px;
    font-size: 0.95rem;
  }

  .form-container {
    margin-top: 28px;
    padding: 0 4px;
  }

  .form-container .button {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
  }

  .form-container.cta-button-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-container.cta-button-row .button {
    margin: 0;
  }

  .contact-cta.cta-button-row,
  .terms-back.cta-button-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-cta.cta-button-row .button,
  .terms-back.cta-button-row .button {
    width: 100%;
    text-align: center;
  }

  input {
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 16px; /* prevents zoom on focus in iOS */
  }

  .features-list {
    padding-left: 0;
    margin-top: 16px;
  }

  .features-list li {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 40px 20px 28px;
  }

  .footer-brand {
    font-size: 1.35rem;
  }

  .footer-nav a {
    padding: 10px 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  body.page-home section.internal-links.pink-section,
  body.page-home section.internal-links.teal-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  body.page-home section.internal-links + section.internal-links {
    margin-top: 16px;
  }

  body.page-home section#services {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .homepage-pill-links {
    gap: 8px;
  }

  .homepage-pill-links a:not(.button) {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  main.terms-page > section.internal-links {
    padding-top: 40px;
    padding-bottom: 44px;
    margin-top: 18px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .site-nav {
    padding: 10px 12px;
    gap: 2px 12px;
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  section {
    padding: 40px 16px;
  }

  h1 {
    font-size: 1.65rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .logo {
    max-width: 180px;
  }

  .hero .cta-button-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
  }

  .hero .cta-button-row .button {
    display: block;
    width: 100%;
    text-align: center;
  }

  .service-card__body .cta-button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card__body .cta-button-row .button {
    width: 100%;
    text-align: center;
  }

  .hero-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-social .button {
    display: inline-flex;
  }

  .collapsible-card summary {
    padding: 14px 16px;
  }

  .collapsible-card summary h3 {
    font-size: 1.05rem;
  }

  .service-card__body {
    padding: 0 16px 14px;
  }

  .pink-section,
  .teal-section {
    border-radius: 16px;
  }
}

/* Certification logos */
.certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  margin-top: 32px;
}

.cert-logo {
  display: block;
}

.cert-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .cert-logo img {
    max-width: 140px;
  }
}
