
    /* 自定義樣式 */
    body {
      background:
        radial-gradient(circle at 20% 30%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 218, 185, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 240, 245, 0.4) 0%, transparent 70%),
        linear-gradient(135deg, #FFE5EC 0%, #FFF4E6 25%, #FFFACD 50%, #FFE5F0 75%, #FFD6E8 100%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background-image:
        radial-gradient(circle, rgba(255, 182, 193, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 222, 173, 0.15) 2px, transparent 2px);
      background-size: 80px 80px, 120px 120px;
      background-position: 0 0, 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    .navbar-custom {
      background-color: transparent;
      box-shadow: none;
      position: relative;
      z-index: 10;
    }

    .navbar-header-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      padding: 0 0.5rem;
    }

    @media (min-width: 992px) {
      .navbar-header-inner {
        max-width: 800px;
      }
    }

    /* 漢堡選單按鈕 */
    .hamburger-btn {
      position: absolute;
      right: 0.5rem;
      left: auto;
      top: 50%;
      transform: translateY(-50%);
      width: 2.75rem;
      height: 2.75rem;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 105, 180, 0.35);
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 240, 245, 0.95) 100%);
      box-shadow:
        0 4px 14px rgba(255, 105, 180, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
    }

    .hamburger-btn:hover,
    .hamburger-btn:focus {
      border-color: rgba(255, 105, 180, 0.65);
      box-shadow:
        0 6px 20px rgba(255, 105, 180, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      background: linear-gradient(145deg, #FFE5EC 0%, #FFF4E6 100%);
      transform: translateY(-50%) scale(1.06);
    }

    .hamburger-btn:active {
      transform: translateY(-50%) scale(0.96);
    }

    .hamburger-icon {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 4px;
      width: 1.125rem;
      height: 0.875rem;
    }

    .hamburger-bar {
      display: block;
      height: 2.5px;
      width: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, #FF6B9D 0%, #C239B3 100%);
      box-shadow: 0 1px 2px rgba(194, 57, 179, 0.2);
      transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.3s ease, opacity 0.3s ease;
    }

    .hamburger-bar:nth-child(2) {
      width: 72%;
    }

    .hamburger-btn:hover .hamburger-bar:nth-child(2) {
      width: 100%;
    }

    .hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      width: 100%;
    }

    .hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) {
      opacity: 0;
      width: 0;
    }

    .hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      width: 100%;
    }

    /* 側邊選單 */
    .site-offcanvas {
      background: linear-gradient(180deg, #FFF9FB 0%, #FFF4E6 50%, #FFE5EC 100%);
      border-left: 3px solid rgba(255, 182, 193, 0.5);
      border-right: none;
      max-width: 280px;
    }

    .site-offcanvas .offcanvas-header {
      border-bottom: 2px solid rgba(255, 182, 193, 0.3);
      padding: 1.25rem 1.5rem;
    }

    .site-offcanvas .offcanvas-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0;
      background: linear-gradient(135deg, #FF69B4, #C239B3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-close-custom {
      opacity: 0.6;
    }

    .btn-close-custom:hover {
      opacity: 1;
    }

    .site-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .site-nav-list li {
      margin-bottom: 0.25rem;
    }

    .site-nav-list a {
      display: block;
      padding: 0.875rem 1rem;
      font-size: 1rem;
      font-weight: 600;
      color: #C239B3;
      text-decoration: none;
      border-radius: 1rem;
      transition: all 0.3s ease;
    }

    .site-nav-list a:hover,
    .site-nav-list a:focus {
      background: rgba(255, 255, 255, 0.7);
      color: #FF1493;
      padding-left: 1.25rem;
    }

    .site-nav-list a.is-active {
      background: rgba(255, 255, 255, 0.85);
      color: #FF1493;
      border-left: 3px solid #FF6B9D;
      padding-left: 1.25rem;
    }

    .logo-img {
      height: 64px;
      mix-blend-mode: multiply;
      filter: drop-shadow(0 4px 12px rgba(255, 105, 180, 0.2));
    }

    @media (min-width: 768px) {
      .logo-img {
        height: 80px;
      }
    }

    .main-container {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    @media (min-width: 992px) {
      .main-container {
        max-width: 800px;
      }
    }

    .banner-wrapper {
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow:
        0 20px 25px -5px rgba(255, 105, 180, 0.15),
        0 10px 10px -5px rgba(255, 105, 180, 0.1);
      margin-bottom: 2rem;
      border: 3px solid rgba(255, 255, 255, 0.5);
      position: relative;
    }

    .banner-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
      pointer-events: none;
      z-index: 1;
    }

    .banner-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .btn-custom {
      border-radius: 2rem;
      padding: 1.2rem 2rem;
      font-size: 1.05rem;
      border: none;
      box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.12),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.875rem;
      width: 100%;
      margin-bottom: 1.25rem;
      position: relative;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.3);
      text-decoration: none;
      cursor: pointer;
    }

    .btn-custom::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
      );
      transform: rotate(45deg);
      transition: all 0.6s;
    }

    .btn-custom:hover::before {
      left: 100%;
    }

    .btn-custom:hover {
      box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.18),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
      transform: translateY(-3px) scale(1.02);
    }

    .btn-custom:active {
      transform: translateY(-1px) scale(0.98);
      box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .btn-order {
      background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 50%, #E91E63 100%);
      color: white;
    }

    .btn-order:hover {
      background: linear-gradient(135deg, #FF5A8C 0%, #B028A2 50%, #D81B60 100%);
      color: white;
    }

    .btn-service {
      background: linear-gradient(135deg, #FFC371 0%, #FF5F6D 50%, #FFA726 100%);
      color: white;
    }

    .btn-service:hover {
      background: linear-gradient(135deg, #FFB260 0%, #FF4E5C 50%, #FF9615 100%);
      color: white;
    }

    .btn-instagram {
      background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
      color: white;
    }

    .btn-instagram:hover {
      background: linear-gradient(135deg, #7329A3 0%, #B02473 50%, #D0295B 100%);
      color: white;
    }

    @media (max-width: 576px) {
      .btn-custom {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
      }
    }

    /* 關於我們區塊 */
    .about-section {
      margin-top: 2rem;
    }

    .about-article-header {
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .about-toc {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      border-radius: 1.25rem;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1.25rem;
      border: 2px solid rgba(255, 182, 193, 0.4);
      box-shadow: 0 6px 16px rgba(255, 105, 180, 0.08);
    }

    .about-toc-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      background: linear-gradient(135deg, #FF69B4, #C239B3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-toc ol {
      margin: 0;
      padding-left: 1.25rem;
    }

    .about-toc li {
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .about-toc a {
      color: #C239B3;
      text-decoration: none;
    }

    .about-toc a:hover {
      color: #FF1493;
      text-decoration: underline;
    }

    .about-content {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      backdrop-filter: blur(10px);
      border-radius: 1.5rem;
      padding: 2rem 1.75rem;
      border: 3px solid rgba(255, 255, 255, 0.9);
      box-shadow:
        0 15px 35px rgba(255, 105, 180, 0.12),
        0 5px 15px rgba(255, 105, 180, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      margin-bottom: 1rem;
    }

    .about-content h2 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 1.5rem 0 0.75rem;
      background: linear-gradient(135deg, #FF69B4, #FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      scroll-margin-top: 1rem;
    }

    .about-content section:first-of-type h2 {
      margin-top: 0;
    }

    .about-content h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin: 1.25rem 0 0.5rem;
      color: #C239B3;
    }

    .about-content p,
    .about-content li {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    .about-content ul {
      padding-left: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .about-content li {
      margin-bottom: 0.5rem;
    }

    .about-content section + section {
      margin-top: 0.25rem;
    }

    @media (max-width: 576px) {
      .about-content {
        padding: 1.5rem 1.25rem;
      }

      .about-content h2 {
        font-size: 1.1rem;
      }
    }

    /* 服務保障區塊 */
    .service-section {
      margin-top: 2rem;
    }

    .section-title {
      text-align: center;
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.2));
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      backdrop-filter: blur(10px);
      border-radius: 1.5rem;
      padding: 2.5rem 1.75rem;
      text-align: center;
      border: 3px solid rgba(255, 255, 255, 0.9);
      box-shadow:
        0 15px 35px rgba(255, 105, 180, 0.12),
        0 5px 15px rgba(255, 105, 180, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 192, 203, 0.15), transparent);
      transition: left 0.6s ease;
    }

    .feature-card:hover::before {
      left: 100%;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #FF6B9D 0%, #C239B3 50%, #FF1493 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
        0 20px 45px rgba(255, 105, 180, 0.2),
        0 8px 20px rgba(255, 105, 180, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      border-color: rgba(255, 192, 203, 0.6);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #FFE5EC 0%, #FFF4E6 50%, #FFE5F0 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid rgba(255, 182, 193, 0.4);
      box-shadow:
        0 8px 20px rgba(255, 105, 180, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.8);
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow:
        0 12px 28px rgba(255, 105, 180, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 105, 180, 0.6);
    }

    .feature-icon i {
      font-size: 2.25rem;
      background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #C71585 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
    }

    .feature-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.875rem;
      background: linear-gradient(135deg, #FF69B4, #FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
    }

    .feature-desc {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.7;
      margin: 0;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 576px) {
      .feature-card {
        padding: 2rem 1.5rem;
      }

      .feature-icon {
        width: 70px;
        height: 70px;
      }

      .feature-icon i {
        font-size: 2rem;
      }

      .feature-title {
        font-size: 1.15rem;
      }

      .feature-desc {
        font-size: 0.9rem;
      }
    }

    /* 頁尾法律條款連結 */
    .footer-legal {
      margin-top: 1rem;
      padding-bottom: 2rem;
    }

    .footer-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-legal {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      color: #C239B3;
      font-size: 0.9rem;
      padding: 0.875rem 1rem;
      margin-bottom: 0;
      border: 2px solid rgba(255, 182, 193, 0.5);
      box-shadow:
        0 6px 12px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .btn-legal i {
      font-size: 1.15rem;
      background: linear-gradient(135deg, #FF69B4 0%, #C239B3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-legal:hover {
      background: linear-gradient(135deg, #FFE5EC 0%, #FFF4E6 100%);
      color: #B028A2;
      border-color: rgba(255, 105, 180, 0.6);
    }

    @media (max-width: 576px) {
      .footer-links {
        grid-template-columns: 1fr;
      }

      .btn-legal {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
      }
    }

    /* 法律條款內容頁 */
    .legal-page-title {
      text-align: center;
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.2));
    }

    .legal-content {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      backdrop-filter: blur(10px);
      border-radius: 1.5rem;
      padding: 2rem 1.75rem;
      border: 3px solid rgba(255, 255, 255, 0.9);
      box-shadow:
        0 15px 35px rgba(255, 105, 180, 0.12),
        0 5px 15px rgba(255, 105, 180, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
      margin-bottom: 1.5rem;
    }

    .legal-content h2,
    .legal-content h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 1.5rem 0 0.75rem;
      background: linear-gradient(135deg, #FF69B4, #FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      scroll-margin-top: 1rem;
    }

    .legal-content section:first-of-type h2,
    .legal-content section:first-of-type h3 {
      margin-top: 0;
    }

    .legal-section {
      margin-top: 2rem;
    }

    .legal-section .section-title {
      margin-bottom: 0.5rem;
    }

    /* 麵包屑導覽 */
    .breadcrumb-nav {
      margin-bottom: 1.25rem;
    }

    .breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.35rem;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.85rem;
      color: #888;
    }

    .breadcrumb-list li:not(:last-child)::after {
      content: '/';
      margin-left: 0.35rem;
      color: #ccc;
    }

    .breadcrumb-list a {
      color: #C239B3;
      text-decoration: none;
    }

    .breadcrumb-list a:hover {
      color: #FF1493;
      text-decoration: underline;
    }

    .breadcrumb-list [aria-current="page"] {
      color: #666;
    }

    /* 條款目錄 */
    .legal-toc {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 252, 0.9) 100%);
      border-radius: 1.25rem;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1.25rem;
      border: 2px solid rgba(255, 182, 193, 0.4);
      box-shadow: 0 6px 16px rgba(255, 105, 180, 0.08);
    }

    .legal-toc-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      background: linear-gradient(135deg, #FF69B4, #C239B3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .legal-toc ol {
      margin: 0;
      padding-left: 1.25rem;
    }

    .legal-toc li {
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .legal-toc a {
      color: #C239B3;
      text-decoration: none;
    }

    .legal-toc a:hover {
      color: #FF1493;
      text-decoration: underline;
    }

    .legal-article-header {
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .legal-related-nav {
      margin-bottom: 1.25rem;
    }

    .legal-related-nav .footer-links {
      margin-bottom: 0;
    }

    .legal-content p,
    .legal-content li {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    .legal-content ul {
      padding-left: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .legal-content li {
      margin-bottom: 0.5rem;
    }

    .legal-content a {
      color: #C239B3;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .legal-content a:hover {
      color: #FF1493;
    }

    .legal-content section + section {
      margin-top: 0.25rem;
    }

    .legal-updated {
      text-align: center;
      font-size: 0.85rem;
      color: #999;
      margin-bottom: 1rem;
    }

    .btn-back {
      background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 50%, #E91E63 100%);
      color: white;
      margin-bottom: 2rem;
    }

    .btn-back:hover {
      background: linear-gradient(135deg, #FF5A8C 0%, #B028A2 50%, #D81B60 100%);
      color: white;
    }
