:root {
  --ink: #17211f;
  --muted: #5d6a66;
  --paper: #fffaf4;
  --surface: #ffffff;
  --line: #d9ddd4;
  --teal: #0f766e;
  --teal-dark: #0a514d;
  --coral: #d65f49;
  --gold: #c79836;
  --sage: #dce7dc;
  --mist: #edf4f1;
  --shadow: 0 18px 45px rgba(23, 33, 31, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.top-logo-bar {
  position: relative;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid rgba(217, 221, 212, 0.72);
  padding: 8px 14px;
}

.top-logo-bar img {
  display: block;
  width: min(100%, 1020px);
  height: auto;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid rgba(217, 221, 212, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.header-action,
.primary-button,
.secondary-button,
.submit-button,
.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 750;
}

.header-action {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 76px) 76px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("hero-cartoon-desktop.jpg");
  background-position: center;
  background-size: cover;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.8) 36%, rgba(255, 250, 244, 0.3) 66%, rgba(23, 33, 31, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 33, 31, 0.23), rgba(23, 33, 31, 0.02) 42%);
}

.hero-content {
  position: relative;
  width: min(670px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 26px 0 0;
  color: #31413d;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.submit-button {
  border: 0;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 13px 26px rgba(15, 118, 110, 0.24);
}

.primary-button,
.secondary-button {
  padding: 0 20px;
}

.secondary-button {
  border: 1px solid rgba(23, 33, 31, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--surface);
  color: #2b3c37;
  font-weight: 700;
  text-align: center;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.section,
.band-inner,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-heading {
  width: min(700px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.four-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 350px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.06);
}

.service-card > svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.accent-card {
  border-color: rgba(214, 95, 73, 0.35);
  background: linear-gradient(180deg, #fff, #fff6f2);
}

.accent-card > svg {
  color: var(--coral);
}

.gold-card {
  border-color: rgba(199, 152, 54, 0.42);
  background: linear-gradient(180deg, #fff, #fff8e8);
}

.gold-card > svg {
  color: var(--gold);
}

.band {
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.band.muted {
  background: #f7f0e6;
}

.band-inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 46px;
  align-items: start;
  padding-block: 76px;
}

.pricing-layout {
  grid-template-columns: 0.58fr 1.12fr;
}

.pricing-content {
  display: grid;
  gap: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid #cfd9d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.06);
}

.pricing-card > svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.pricing-card h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-card strong {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--teal-dark);
  font-size: 1.38rem;
  line-height: 1.2;
}

.pricing-card.featured {
  border-color: rgba(199, 152, 54, 0.42);
  background: linear-gradient(180deg, #fff, #fff8e8);
}

.pricing-card.featured > svg {
  color: var(--gold);
}

.pricing-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: #fff5ef;
  color: #6f392f;
}

.pricing-note p {
  margin: 0;
}

.payment-section {
  padding-bottom: 88px;
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.payment-panel {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.06);
}

.payment-panel > svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.payment-panel h3 {
  margin: 18px 0 16px;
  font-size: 1.35rem;
}

.insurance-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insurance-prices div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 14px;
  border: 1px solid #d7cfc1;
  border-radius: 8px;
  background: #fff8e8;
}

.insurance-prices span,
.bank-details dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.insurance-prices strong {
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.bank-panel > svg {
  color: var(--gold);
}

.bank-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.bank-details div:first-child {
  border-top: 0;
}

.bank-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.booking-section {
  padding-bottom: 92px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.booking-form,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.form-section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #f1f8f5;
}

.form-section-heading > svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--teal);
}

.form-section-heading h3 {
  margin: 0;
  font-size: 1.04rem;
}

.form-section-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-choice-grid {
  grid-template-columns: repeat(4, 1fr);
}

.insurance-choice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

.service-option span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.service-option input:checked + span {
  border-color: var(--teal);
  background: #e9f5f2;
  color: var(--teal-dark);
}

.service-option input:focus-visible + span,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 152, 54, 0.55);
  outline-offset: 3px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 20px;
  align-items: stretch;
}

label {
  display: grid;
  align-content: start;
  gap: 8px;
  color: #31413d;
  font-weight: 750;
}

.form-grid > label {
  grid-template-rows: 24px 52px auto;
  min-height: 92px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ccd4cf;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
}

input:not([type="file"]),
select {
  height: 52px;
}

input[type="file"] {
  min-height: 52px;
  height: 52px;
  padding: 10px;
  background: #fff;
}

.field-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hidden-field input {
  width: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.consent a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-button {
  width: fit-content;
  padding: 0 22px;
  cursor: pointer;
}

.booking-summary {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.summary-top {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-top > svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.summary-top p {
  margin: 0;
  color: var(--muted);
}

.summary-top strong {
  display: block;
  margin-top: 2px;
  font-size: 1.12rem;
}

.booking-summary dl {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.booking-summary dt {
  color: var(--muted);
}

.booking-summary dd {
  margin: 0;
  max-width: 170px;
  font-weight: 800;
  text-align: right;
}

.summary-note {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.notice {
  padding: 14px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: #fff5ef;
  color: #6f392f;
  font-size: 0.94rem;
}

.notice.success {
  border-left-color: var(--teal);
  background: #eaf7f2;
  color: var(--teal-dark);
}

.faq-layout {
  grid-template-columns: 0.55fr 1fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.terms-list {
  display: grid;
  gap: 12px;
}

.terms-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid #d7cfc1;
  border-radius: 8px;
  background: #fff;
}

.terms-list svg {
  margin-top: 3px;
  color: var(--coral);
}

.terms-list p {
  margin: 0;
  color: var(--muted);
}

.declaration-section {
  padding-top: 76px;
}

.declaration-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.declaration-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.06);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 8px;
  background: #15803d;
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(21, 128, 61, 0.28);
}

.whatsapp-float:hover {
  background: #166534;
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
}

details {
  border: 1px solid #d7cfc1;
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 34px 0;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.site-footer a {
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.12), transparent 40%),
    var(--paper);
}

.thank-you-panel {
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.1;
}

.thank-you-panel p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .four-services,
  .payment-layout,
  .band-inner,
  .booking-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand small,
  .header-action span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 20px 54px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.92) 45%, rgba(255, 250, 244, 0.18) 100%),
      rgba(23, 33, 31, 0.08);
  }

  .hero-media {
    background-position: 58% top;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 4.6rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .band-inner,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .band-inner {
    padding-block: 58px;
  }

  .option-grid,
  .service-choice-grid,
  .insurance-choice-grid,
  .form-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .booking-summary,
  .service-card,
  .payment-panel {
    padding: 20px;
  }

  .insurance-prices,
  .bank-details div {
    grid-template-columns: 1fr;
  }

  .submit-button,
  .site-footer a {
    width: 100%;
  }
}

/* Icon fallback for browsers that block the external icon script. */
i[data-lucide] {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
  font-style: normal;
  line-height: 1;
}

i[data-lucide]::before {
  content: "+";
  font-size: 18px;
  font-weight: 900;
}

i[data-lucide="calendar-check"]::before,
i[data-lucide="calendar-plus"]::before,
i[data-lucide="calendar-days"]::before,
i[data-lucide="calendar-clock"]::before {
  content: "□";
}

i[data-lucide="clipboard-list"]::before,
i[data-lucide="receipt-text"]::before,
i[data-lucide="wallet-cards"]::before {
  content: "≡";
}

i[data-lucide="home"]::before,
i[data-lucide="landmark"]::before {
  content: "⌂";
}

i[data-lucide="heart-handshake"]::before,
i[data-lucide="heart-pulse"]::before,
i[data-lucide="shield"]::before,
i[data-lucide="shield-plus"]::before,
i[data-lucide="shield-check"]::before {
  content: "♡";
}

i[data-lucide="clock-3"]::before,
i[data-lucide="timer"]::before {
  content: "◷";
}

i[data-lucide="sparkles"]::before {
  content: "✦";
}

i[data-lucide="send"]::before {
  content: "›";
}

@media (max-width: 760px) {
  body {
    background: #fffbf5;
  }

  .site-header {
    position: sticky;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .header-action {
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 22px;
    padding: 16px 14px 36px;
    overflow: visible;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(230px, 62vw, 360px);
    border: 1px solid rgba(217, 221, 212, 0.88);
    border-radius: 8px;
    background-image: url("hero-cartoon-mobile.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: 0 14px 34px rgba(23, 33, 31, 0.12);
    transform: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .primary-button,
  .secondary-button,
  .submit-button {
    width: 100%;
    min-height: 50px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .trust-strip div {
    min-height: 58px;
    justify-content: flex-start;
    padding: 14px 18px;
    text-align: left;
  }

  .section,
  .band-inner,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .band-inner {
    padding-block: 46px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 1.72rem;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .service-grid,
  .four-services,
  .payment-layout,
  .band-inner,
  .booking-layout,
  .faq-layout,
  .option-grid,
  .service-choice-grid,
  .insurance-choice-grid,
  .form-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .payment-panel,
  .booking-form,
  .booking-summary {
    min-height: 0;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(23, 33, 31, 0.07);
  }

  .form-section-heading {
    padding: 14px;
  }

  .form-section-heading h3 {
    font-size: 1rem;
  }

  .form-section-heading p {
    font-size: 0.88rem;
  }

  .service-card h3,
  .payment-panel h3 {
    margin-top: 12px;
    font-size: 1.18rem;
  }

  .service-card ul {
    margin-top: 14px;
  }

  .pricing-card {
    min-height: 0;
    padding: 18px;
  }

  .pricing-card strong {
    font-size: 1.2rem;
  }

  .insurance-prices {
    grid-template-columns: 1fr;
  }

  .insurance-prices div {
    min-height: 70px;
  }

  .bank-details div,
  .booking-summary dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .booking-summary {
    position: static;
  }

  .booking-summary dl div {
    display: grid;
  }

  .booking-summary dd {
    max-width: none;
    text-align: left;
  }

  .service-option span {
    min-height: 50px;
    justify-content: flex-start;
    padding-inline: 14px;
    text-align: left;
  }

  label {
    font-size: 0.95rem;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .notice {
    font-size: 0.9rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}
