.site-container {
    padding-inline: 20px;
  }

  .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: auto;
  }

  .opacity-30 {
    opacity: .3;
  }

  /* Footer: copyright left, legal links right */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  @media (min-width: 640px) {
    .footer-bottom {
      flex-direction: row;
      align-items: center;
    }
    .footer-bottom .copyright-text { text-align: left; }
    .footer-bottom .footer-links { justify-content: flex-end; }
  }
  .footer-links a { color: #333; }
  .footer-links a:hover { color: #ff4f01; }

  /* Legal pages UI */
  .legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
  }
  .legal-hero {
    background: linear-gradient(135deg, rgba(255, 79, 1, 0.06) 0%, rgba(255, 79, 1, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 79, 1, 0.12);
    padding: 2.5rem 0 2rem 2rem;
    margin-bottom: 2.5rem;
}
  .legal-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-hero .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .legal-hero .breadcrumb a:hover { opacity: 0.85; }
  .legal-hero .breadcrumb span { color: #999; }
  .legal-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
  }
  .legal-hero .last-updated {
    display: inline-block;
    font-size: 0.8125rem;
    color: #666;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.25rem;
  }
  .legal-content {
    max-width: 1200px;
    margin: 0 auto;
}
  .legal-content .content-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  @media (min-width: 768px) {
    .legal-content .content-card { padding: 2.5rem 2.5rem; }
  }
  .legal-content .intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .legal-content .section {
    margin-bottom: 2rem;
  }
  .legal-content .section:last-of-type { margin-bottom: 0; }
  .legal-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.4;
  }
  .legal-content p {
    font-size: 1rem;
    line-height: 1.72;
    color: #4b5563;
    margin: 0 0 1rem;
  }
  .legal-content ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    color: #4b5563;
    line-height: 1.72;
  }
  .legal-content li {
    margin-bottom: 0.5rem;
  }
  .legal-content li::marker { color: var(--primary-color); }
  .legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-content a:hover {
    border-bottom-color: var(--primary-color);
  }
  .legal-content .contact-note {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }

  /* Appointment modal */
  body.dds-modal-open {
    overflow: hidden;
  }

  .dds-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .dds-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dds-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 20, 0.55);
    backdrop-filter: blur(8px);
  }

  .dds-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 79, 1, 0.12);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dds-modal.is-open .dds-modal__dialog {
    transform: translateY(0) scale(1);
  }

  .dds-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
  }

  .dds-modal__close:hover {
    background: var(--primary-color);
    color: #fff;
  }

  .dds-modal__header {
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
  }

  .dds-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    background: rgba(255, 79, 1, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
  }

  .dds-modal__header h2 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.25;
  }

  .dds-modal__header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .dds-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dds-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
  }

  .dds-field label span {
    color: var(--primary-color);
  }

  .dds-field input,
  .dds-field select,
  .dds-field textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
  }

  .dds-field input:focus,
  .dds-field select:focus,
  .dds-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 79, 1, 0.15);
  }

  .dds-field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .dds-form-error {
    color: #c0392b;
    font-size: 0.875rem;
    margin: 0;
  }

  .dds-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 24px rgba(255, 79, 1, 0.35);
  }

  .dds-modal__submit:hover {
    background: #e64801;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 79, 1, 0.4);
  }

  .dds-modal__submit i {
    font-size: 1.15rem;
  }

  /* WhatsApp floating button */
  .dds-whatsapp-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
  }

  .dds-whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
    color: #fff;
  }

  .dds-whatsapp-float__tooltip {
    position: absolute;
    left: calc(100% + 10px);
    white-space: nowrap;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
  }

  .dds-whatsapp-float:hover .dds-whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  @media (max-width: 480px) {
    .dds-whatsapp-float__tooltip {
      display: none;
    }
    .dds-modal__dialog {
      padding: 1.5rem 1.25rem;
      border-radius: 20px;
    }
  }