
    :root {
      --color-bg-deep: #075E54;
      --color-bg: #F1F4F2;
      --color-bg-light: #DCE8E1;
      --color-bg-rgb: 241, 244, 242;
      --color-bg-light-rgb: 220, 232, 225;
      --color-support-rgb: 7, 94, 84;
      --color-accent: #25D366;
      --color-accent-hover: #1EBE5D;
      --color-accent-soft: #D9FDD3;
      --color-accent-foreground: #073B25;
      --color-accent-rgb: 37, 211, 102;
      --color-text: #25332F;
      --color-text-muted: #52635D;
      --color-text-subtle: #6A7B75;
      --color-inverse: #F7FAF8;
      --color-inverse-muted: #DCE8E1;
      --color-surface: #FFFFFF;
      --color-surface-hover: #EAF2ED;
      --color-border: rgba(var(--color-support-rgb), 0.18);
      --shadow-card: 0 10px 28px rgba(var(--color-support-rgb), 0.09);
      --shadow-accent: 0 6px 20px rgba(var(--color-accent-rgb), 0.3);
    }

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

    ::selection {
      background: var(--color-accent);
      color: var(--color-bg-deep);
    }

    a:focus-visible,
    button:focus-visible,
    .faq-question:focus-visible {
      outline: 3px solid var(--color-accent-soft);
      outline-offset: 3px;
    }

    body {
      font-family: 'Inter', sans-serif;
      /* 柔和灰白为主背景，深绿承载结构，亮绿只用于关键行动。 */
      background: var(--color-bg);
      background-attachment: fixed;
      color: var(--color-text);
      line-height: 1.4;
      scroll-behavior: smooth;
    }

    /* containers & spacing */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      padding: 80px 0;
      border-bottom: 1px solid rgba(var(--color-support-rgb), 0.12);
      scroll-margin-top: 72px;
    }

    .full-width-img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    /* 深灰绿文字在浅灰页面上保持稳定对比度。 */
    h1,
    h2,
    h3 {
      font-weight: 700;
      letter-spacing: 0;
      color: var(--color-text);
    }

    h1 {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    h2 {
      font-size: 40px;
      margin-bottom: 32px;
      text-align: center;
    }

    h3 {
      font-size: 24px;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .section-sub {
      font-size: 18px;
      color: var(--color-text-muted);
      margin-bottom: 40px;
      font-weight: 400;
      line-height: 1.5;
      text-align: center;
    }

    /* 白色卡片在浅灰页面上提供清晰层次。 */
    .grid-cards {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 32px;
      margin: 40px 0;
    }

    .treatment-card {
      background: var(--color-surface);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      padding: 32px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--color-border);
      flex: 1 1 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
      color: var(--color-text);
    }

    .treatment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      background: var(--color-surface-hover);
      border-color: rgba(var(--color-accent-rgb), 0.55);
    }

    .badge {
      font-size: 14px;
      font-weight: 600;
      color: var(--color-accent-foreground);
      background: var(--color-accent-soft);
      display: inline-block;
      padding: 8px 20px;
      border-radius: 40px;
      margin-bottom: 16px;
      letter-spacing: 0;
      box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.2);
    }

    .stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 24px 0;
      font-size: 16px;
      background: var(--color-bg-light);
      padding: 20px;
      border-radius: 16px;
      border: 1px solid rgba(var(--color-accent-rgb), 0.2);
    }

    .stat-item {
      flex: 1;
      min-width: 120px;
    }

    .stat-label {
      font-weight: 500;
      color: var(--color-text-muted);
      /* 柔和浅色标签 */
      margin-bottom: 4px;
      display: block;
    }

    .stat-value {
      font-weight: 700;
      color: var(--color-bg-deep);
      font-size: 18px;
    }

    /* 案例与评价卡片 */
    .carousel-h {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin: 0 auto;
      max-width: 100%;
    }

    .carousel-item {
      background: var(--color-surface);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--color-border);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
      color: var(--color-text);
    }

    .carousel-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      background: var(--color-surface-hover);
      border-color: rgba(var(--color-accent-rgb), 0.5);
    }

    .before-after-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: rgba(var(--color-bg-light-rgb), 0.5);
      /* 图片未加载时仍保持主题一致。 */
    }

    .review-card {
      background: var(--color-surface);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      padding: 32px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--color-border);
      height: 100%;
      display: flex;
      flex-direction: column;
      color: var(--color-text);
    }

    /* 横向流程步骤 */
    .step-icon {
      background: rgba(var(--color-accent-rgb), 0.3);
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--color-bg-deep);
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.3);
    }

    .step-content strong {
      display: block;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-bg-deep);
    }

    .step-content span {
      display: block;
      font-size: 14px;
      color: var(--color-text-muted);
      line-height: 1.5;
    }

    /* 海外患者支持卡片 */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin: 40px 0;
    }

    .support-card {
      background: var(--color-surface);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      padding: 32px 24px;
      text-align: center;
      font-weight: 600;
      font-size: 16px;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
      color: var(--color-text);
    }

    .support-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      background: var(--color-surface-hover);
      border-color: rgba(var(--color-accent-rgb), 0.5);
    }

    .support-card i {
      font-size: 40px;
      margin-bottom: 16px;
      display: block;
      color: var(--color-accent);
    }

    /* FAQ板块 */
    .faq-item {
      border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.3);
      padding: 24px 0;
      transition: padding 0.3s ease, background-color 0.3s ease;
    }

    .faq-item:hover {
      background: rgba(var(--color-accent-rgb), 0.1);
      padding-left: 20px;
      border-radius: 16px;
    }

    .faq-question {
      font-weight: 600;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
      color: var(--color-text);
    }

    .faq-question:hover {
      color: var(--color-accent);
    }

    .faq-answer {
      margin-top: 16px;
      color: var(--color-text-muted);
      display: none;
      font-size: 16px;
      line-height: 1.5;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    /* 页脚使用更深的品牌绿色收束页面。 */
    footer {
      background: var(--color-bg-deep);
      padding: 80px 0 40px;
      text-align: center;
      font-size: 14px;
      color: var(--color-inverse-muted);
      border-top: 1px solid rgba(var(--color-accent-rgb), 0.3);
    }

    footer a {
      color: var(--color-accent) !important;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: var(--color-inverse) !important;
    }

    /* 响应式适配 */
    @media (min-width: 640px) {
      .container {
        padding: 0 28px;
      }

      .grid-cards {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .treatment-card {
        flex: 1 1 calc(33% - 20px);
      }

      .carousel-item {
        flex: 0 0 45%;
      }
    }

    @media (max-width: 480px) {
      .support-grid {
        grid-template-columns: 1fr;
      }

      /* 适配移动端视频/图片展示 */
      .vip-service-section video {
        height: auto !important;
      }

      .vip-photo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 28px;
      }

      /* 流程箭头在手机端向下 */
      .flow-horizontal {
        flex-direction: column !important;
        gap: 10px !important;
      }

      .flow-arrow {
        margin: 5px 0 !important;
      }

      .flow-arrow i {
        transform: rotate(90deg);
      }
    }

    /* simple disclaimer */
    .disclaimer-note {
      font-size: 12px;
      color: var(--color-text-muted);
      margin-top: 12px;
      text-align: center;
    }

    img.mock-img {
      background: var(--color-bg-light);
      width: 100%;
      height: auto;
      display: block;
    }

    .profile-photo {
      border-radius: 8px;
      width: 100%;
      max-width: 280px;
      margin: 0 auto 24px;
      display: block;
      border: 4px solid rgba(var(--color-accent-rgb), 0.5);
      box-shadow: 0 10px 30px rgba(var(--color-accent-rgb), 0.3);
    }

    hr {
      border: none;
      border-top: 1px solid rgba(var(--color-accent-rgb), 0.3);
    }

    /* VIP 服务媒体区域 */
    .vip-service-section {
      margin-top: 48px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(var(--color-accent-rgb), 0.3);
      background: var(--color-surface);
    }

    .vip-service-section video {
      width: 100%;
      height: auto;
      display: block;
    }

    .vip-photo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      padding: 24px;
      background: var(--color-bg-light);
    }

    .vip-photo-grid img {
      border-radius: 6px;
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    }

    .vip-photo-grid img:hover {
      transform: scale(1.02);
      border: 1px solid rgba(var(--color-accent-rgb), 0.5);
    }

    .vip-note {
      padding: 0 24px 24px;
      color: var(--color-text-muted);
      font-size: 14px;
      text-align: center;
    }

    /* Hero 延续柔和灰绿方案，亮绿只用于主要行动。 */
    .hero-banner {
      background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    }

    .hero-treatment-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 48px;
    }

    .hero-treatment-link {
      padding: 12px 20px;
      border: 1px solid rgba(var(--color-support-rgb), 0.28);
      border-radius: 999px;
      background: rgba(var(--color-support-rgb), 0.06);
      color: var(--color-bg-deep);
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .hero-treatment-link:hover {
      transform: translateY(-2px);
      border-color: var(--color-accent);
      background: var(--color-accent-soft);
      color: var(--color-bg-deep);
    }

    /* 横向流程样式 - 替换原有竖向样式 */
    .flow-horizontal {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px 0 40px;
      scroll-snap-type: x mandatory;
      max-width: 100%;
    }

    .flow-step-item {
      flex: 0 0 160px;
      scroll-snap-align: start;
      text-align: center;
    }

    .flow-step-icon {
      width: 60px;
      height: 60px;
      background: var(--color-accent-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      font-size: 22px;
      color: var(--color-bg-deep);
      box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.3);
    }

    .flow-step-title {
      font-size: 15px;
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: var(--color-bg-deep);
    }

    .flow-step-desc {
      font-size: 13px;
      color: var(--color-text-muted);
      line-height: 1.4;
    }

    /* 恢复周期轮播样式 */
    .recovery-timeline {
      margin-top: 60px;
    }

    .recovery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding: 10px 0 30px;
      scroll-snap-type: x mandatory;
    }

    .recovery-item {
      flex: 0 0 180px;
      scroll-snap-align: start;
      text-align: center;
    }

    .recovery-img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      aspect-ratio: 4/5;
      background: var(--color-bg-light);
      border: 1px solid rgba(var(--color-accent-rgb), 0.3);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .recovery-label {
      margin-top: 10px;
      font-weight: 600;
      font-size: 15px;
      color: var(--color-bg-deep);
    }

    /* WhatsApp浮动按钮样式 */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.4);
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(var(--color-accent-rgb), 0.6);
      background: var(--color-accent-hover);
    }

    .whatsapp-float i {
      font-size: 32px;
      color: var(--color-accent-foreground);
    }

    .whatsapp-tooltip {
      position: absolute;
      right: 70px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--color-text);
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
      }

      .whatsapp-float i {
        font-size: 28px;
      }

      .whatsapp-tooltip {
        display: none;
      }
    }

    /* 自定义按钮样式 */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--color-accent);
      color: var(--color-accent-foreground);
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: var(--shadow-accent);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(var(--color-accent-rgb), 0.4);
      background: var(--color-accent-hover);
    }

    /* ========== 导航栏样式 ========== */
    .site-nav {
      background: rgba(var(--color-support-rgb), 0.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.3);
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 32px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--color-inverse);
    }

    .nav-brand-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-accent);
    }

    .nav-brand-sub {
      margin-left: 8px;
      font-size: 14px;
      color: var(--color-inverse-muted);
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .nav-link {
      text-decoration: none;
      color: var(--color-inverse-muted);
      font-weight: 500;
      transition: color 0.3s ease;
      font-size: 15px;
    }

    .nav-link:hover {
      color: var(--color-accent);
    }

    .nav-cta {
      font-size: 14px !important;
      padding: 8px 16px !important;
    }

    /* 汉堡菜单按钮 - 桌面端隐藏 */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: none;
      border: 1px solid rgba(var(--color-accent-rgb), 0.4);
      border-radius: 8px;
      cursor: pointer;
      padding: 0;
      gap: 5px;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .nav-hamburger:hover {
      background: rgba(var(--color-accent-rgb), 0.15);
    }

    .nav-hamburger .bar {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--color-accent);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* 汉堡菜单激活态（X 形） */
    .nav-hamburger.active .bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.active .bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ========== 移动端导航适配 ========== */
    /* 移动端全屏菜单覆盖层（body 直接子元素，不受 nav 的 stacking context 影响） */
    .mobile-menu-overlay {
      display: none;
      /* 桌面端完全隐藏 */
    }

    /* ========== 移动端导航适配 ========== */
    @media (max-width: 768px) {
      .nav-inner {
        padding: 12px 16px;
      }

      .nav-brand-sub {
        display: none;
      }

      /* 确保导航栏及其按钮在全屏菜单之上 */
      .site-nav {
        z-index: 2000;
        transition: background 0.3s ease;
      }

      /* 菜单打开时隐藏导航栏背景和边框，使 X 按钮如同直接在菜单上 */
      .site-nav.menu-open {
        background: transparent !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      .nav-hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
      }

      /* 移动端隐藏 nav 内的桌面导航 */
      .nav-links-desktop {
        display: none !important;
      }

      /* 移动端全屏覆盖菜单 */
      .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-deep);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
        z-index: 1001;
        /* 默认隐藏 */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .mobile-menu-overlay .nav-link {
        font-size: 20px;
        padding: 16px 40px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.3s ease, background-color 0.3s ease;
        text-decoration: none;
        color: var(--color-inverse-muted);
        font-weight: 500;
      }

      .mobile-menu-overlay .nav-link:hover,
      .mobile-menu-overlay .nav-link:active {
        background: rgba(var(--color-accent-rgb), 0.1);
        color: var(--color-accent);
      }

      .mobile-menu-overlay .nav-cta {
        margin-top: 24px;
        font-size: 18px !important;
        padding: 14px 40px !important;
        width: auto;
        border-bottom: none;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 18px;
      }

      section {
        padding: 64px 0;
      }

      .hero-treatment-links {
        width: 100%;
      }

      .hero-treatment-link {
        width: 100%;
        text-align: center;
      }

      .btn-primary {
        min-height: 52px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }



        .result-carousel-container {
          position: relative;
          width: 100%;
          overflow: hidden;
        }

        .result-carousel-track {
          display: flex;
          transition: transform 0.3s ease-in-out;
          width: 100%;
        }

        .result-carousel-track img {
          flex: 0 0 100%;
          width: 100%;
          aspect-ratio: 1/1;
          object-fit: cover;
          background: rgba(var(--color-bg-light-rgb), 0.5);
          /* from before-after-img */
        }

        .rc-btn {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0, 0, 0, 0.4);
          color: white;
          border: none;
          border-radius: 50%;
          width: 32px;
          height: 32px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          z-index: 10;
          transition: background 0.3s;
        }

        .rc-btn:hover {
          background: rgba(0, 0, 0, 0.6);
        }

        .rc-prev {
          left: 10px;
        }

        .rc-next {
          right: 10px;
        }

        .rc-dots {
          position: absolute;
          bottom: 12px;
          width: 100%;
          display: flex;
          justify-content: center;
          gap: 6px;
          z-index: 10;
        }

        .rc-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.5);
          cursor: pointer;
          border: none;
          padding: 0;
          transition: background 0.3s;
        }

/* 模板辅助样式 */
.template-style-001 {
  font-size: 16px;
}

.template-style-002 {
  height: 80px;
}

.template-style-003 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.template-style-004 {
  border-radius:8px;
  width:350px;
  height: 350px;
  object-fit: cover;
  /*object-position: top;*/
}

.template-style-005 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.template-style-006 {
  text-align: center;
}

.template-style-007 {
  font-weight: 400;
}

.template-style-008 {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 800px;
  text-align: center;
}

.template-style-009 {
  text-align: center;
  margin-top: 40px;
}

.template-style-010 {
  width: 100%;
  max-width: 400px;
  justify-content: center;
  font-size: 20px;
  padding: 20px 40px;
}

.template-style-011 {
  font-size: 28px;
}

.template-style-012 {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.template-style-013 {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.template-style-014 {
  color: var(--color-accent);
  font-size: 18px;
  margin-right: 10px;
}

.template-style-015 {
  background: var(--color-accent);
}

.template-style-016 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  z-index: 10;
}

.template-style-017 {
  padding:12px;
}

.template-style-018 {
  text-align:center;
  margin-top: 24px;
}

.template-style-019 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.template-style-020 {
  margin-bottom: 20px;
}

.template-style-021 {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.template-style-022 {
  margin-bottom: 16px;
}

.template-style-023 {
  font-weight: 500;
  color: var(--color-text-muted);
}

.template-style-024 {
  text-align: center;
  margin-bottom: 48px;
}

.template-style-025 {
  margin-top: 32px;
}

.template-style-026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.template-style-027 {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--color-border);
}

.template-style-028 {
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.template-style-029 {
  line-height: 1.6;
  color: var(--color-text-muted);
}

.template-style-030 {
  line-height: 1.8;
  color: var(--color-text-muted);
}

.template-style-031 {
  margin-bottom: 12px;
}

.template-style-032 {
  font-size: 24px;
  color: var(--color-bg-deep);
}

.template-style-033 {
  text-align: center;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 16px;
  color: var(--color-text-muted);
}

.template-style-034 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.template-style-035 {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--color-border);
  height: 100%;
}

.template-style-036 {
  list-style: none;
  padding: 0;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.template-style-037 {
  display: flex;
  align-items: flex-start;
}

.template-style-038 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.template-style-039 {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.template-style-040 {
  color: var(--color-accent);
  font-size: 20px;
  margin: 0 10px;
  flex-shrink: 0;
}

.template-style-041 {
  margin-top: 48px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}

.template-style-042 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.template-style-043 {
  flex: 0 0 100%;
  text-align: center;
  padding: 20px;
}

.template-style-044 {
  width: 100%;
  max-height: 500px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.template-style-045 {
  margin-top: 16px;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text);
}

.template-style-046 {
  margin-top: 8px;
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.template-style-047 {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.template-style-048 {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.template-style-049 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.template-style-050 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.template-style-051 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.template-style-052 {
  display: flex;
  gap: 20px;
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--color-border);
}

.template-style-053 {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-bg-deep);
}

.template-style-054 {
  margin-bottom: 8px;
}

.template-style-055 {
  color: var(--color-text-muted);
  line-height: 1.5;
}

.template-style-056 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.template-style-057 {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.template-style-058 {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.template-style-059 {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: bottom;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.template-style-060 {
  margin: 48px 0;
}

.template-style-061 {
  text-align: center;
  margin-bottom: 32px;
}

.template-style-062 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.template-style-063 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 24px;
  border: 1px solid var(--color-border);
}

.template-style-064 {
  width: 40px;
  height: 40px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-bg-deep);
}

.template-style-065 {
  width: 60px;
  height: 60px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-bg-deep);
  margin: 0 auto 16px;
}

.template-style-066 {
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--color-border);
  text-align: center;
  grid-column: 1 / -1;
}

.template-style-067 {
  margin-bottom: 32px;
}

.template-style-068 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-inverse);
  margin-bottom: 16px;
}

.template-style-069 {
  color: var(--color-inverse-muted);
  margin-bottom: 8px;
}

.template-style-070 {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 32px;
}

.template-style-071 {
  color: var(--color-inverse-muted);
  text-align: center;
}

.template-style-072 {
  text-align: center;
  color: var(--color-inverse-muted);
}

.template-style-073 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-style-074 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10001;
}

.template-style-075 {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
