/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design tokens - typography & spacing */
:root {
    --font-body: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    --color-text: #2c2c2c;
    --color-text-muted: #666;
    --color-accent: #d4a574;
    --color-primary: #2d5a3d;
    --line-height-body: 1.65;
    --line-height-heading: 1.2;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0.01em;
    --section-padding: 80px 20px;
    --section-padding-mobile: 50px 16px;
    /* Typography scale */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-hero: 64px;
}

/* Font Imports - via link tag in HTML */

html {
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing-normal);
    overflow-x: hidden;
    font-weight: 400;
    font-size: var(--text-base);
    width: 100%;
    max-width: 100%;
}

/* Prevent text overflow on mobile */
p, li, span, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

.container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Banner */
.top-banner {
    background-color: #a8c5d1;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', 'DM Sans', sans-serif;
}

.top-banner p {
    margin: 0;
}

/* Header Navigation */
.header {
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1900px;
    margin: 0 auto;
}

.logo a {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    letter-spacing: 0.5px;
    text-transform: none;
}

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: block;
    padding: 5px 0;
    cursor: pointer;
}

.nav-link:hover {
    color: #666;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 2px solid #d4a574;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f5f0eb;
    color: #2c2c2c;
    padding-left: 25px;
}

/* Main nav link styles */
.main-nav a {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: #666;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher Dropdown */
.language-switcher {
    position: relative;
    margin-right: 5px;
}

.lang-toggle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background: none;
    border: 1px solid #e5e5e5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 30px 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    position: relative;
}

.lang-toggle:hover {
    border-color: #2d5a3d;
    background-color: #f9f9f9;
}

.lang-current {
    display: inline-block;
}

.lang-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: #666;
    pointer-events: none;
}

.language-switcher.active .lang-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: white;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.language-switcher.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.lang-option {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.lang-option:hover {
    background-color: #f5f0eb;
    color: #2c2c2c;
}

.lang-option.active {
    color: #2d5a3d;
    font-weight: 500;
    background-color: #f0f5f2;
}

.icon-link {
    color: #2c2c2c;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.icon-link:hover {
    color: #666;
}

.btn-book {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #2d5a3d;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background-color: #1e3d28;
}

/* Mobile Menu Toggle - hidden on desktop, ~20% reduced on mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav - overlay drawer, ~20% reduced proportions */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 224px;
    max-width: 78vw;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 20px 32px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
    display: block;
    padding: 13px 0;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.2s;
}

.mobile-nav-list a:hover {
    color: #d4a574;
}

.mobile-nav-book {
    margin-top: 12px;
    background: #2d5a3d !important;
    color: white !important;
    text-align: center;
    padding: 11px !important;
    border-radius: 4px;
    font-size: 13px;
}

.mobile-nav-book:hover {
    background: #1e3d28 !important;
    color: white !important;
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

[data-lang="cn"] .hero-subtitle {
    font-family: 'Inter', 'DM Sans', 'Microsoft YaHei', 'SimSun', sans-serif;
}

.btn-hero {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background-color: #c49564;
}

/* Hero Carousel Controls */
.hero-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-control-btn:active {
    transform: scale(0.95);
}

.hero-control-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.hero-control-btn .pause-icon {
    display: none;
}

.hero-control-btn.paused .play-icon {
    display: none;
}

.hero-control-btn.paused .pause-icon {
    display: block;
}

/* Press Section */
.press-section {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.press-quote {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    font-size: 24px;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.press-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.press-logo:hover {
    opacity: 1;
}

.press-logo img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
}

.press-logo-first img {
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Intro Section / Core Narrative */
.intro-section {
    background-color: #f5f0eb;
    padding: 80px 20px;
}

.core-narrative {
    max-width: 1600px;
    margin: 0 auto;
}

.narrative-content {
    margin-bottom: 0;
}

.narrative-title {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-align: center;
    letter-spacing: -0.01em;
}

.narrative-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

[data-lang="cn"] .narrative-text,
[data-lang="cn"] .narrative-title {
    font-family: 'Inter', 'DM Sans', 'Microsoft YaHei', 'SimSun', sans-serif;
}

.intro-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    text-align: center;
}

/* Services & Products */
.services-products {
    background-color: #f5f0eb;
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
}

.service-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-circle-acupuncture {
    background-color: #b8d4e3;
}

.service-circle-products {
    background-color: #c4d5b0;
}

.service-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.service-description {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.btn-service {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-service:hover {
    background-color: #c49564;
}

/* Healers Section */
.healers-section {
    background-color: #8b5a3c;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.healers-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.healers-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.7;
}

.healers-carousel-wrapper {
    position: relative;
    max-width: 1900px;
    margin: 0 auto 40px;
    padding: 0 60px;
}

.healers-carousel {
    overflow: hidden;
    margin: 0 auto;
}

.healers-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

/* Desktop: 4 cols, 2 logical pages (index - 8 single-card pages) */
.healers-carousel-page {
    flex: 0 0 25%;
    min-width: 25%;
    padding: 0 10px;
}

/* Legacy: 2 pages, 4 cards per page (acupuncture, about) */
.healers-carousel-page:has(.healer-card:nth-child(2)) {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.healer-card {
    text-align: center;
}

.healer-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.healer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.healer-bg-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, #a8c5a0 0%, #d4c574 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

.healer-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.healer-specialty {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.btn-healer {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-healer:hover {
    background-color: #c49564;
}

.healer-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #d4a574;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #2c2c2c;
}

.healer-carousel-btn:hover {
    background-color: #d4a574;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.healer-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.healer-carousel-prev {
    left: 0;
}

.healer-carousel-next {
    right: 0;
}

.healer-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.healer-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.healer-indicator.active {
    background-color: #d4a574;
    width: 30px;
    border-radius: 6px;
}

.healer-indicator:hover {
    background-color: #d4a574;
    opacity: 0.7;
}

.healer-indicator-mobile {
    display: none;
}

/* What To Expect Section */
.expect-section {
    background-color: #f5f0eb;
    padding: 80px 20px;
}

.expect-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto;
}

.expect-card {
    text-align: center;
    padding: 30px;
}

.expect-card-image {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
}

.expect-card-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.expect-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.expect-card-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-expect {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-expect:hover {
    background-color: #c49564;
}

/* Conditions Section */
.conditions-section {
    background-color: white;
    padding: 80px 20px;
}

.conditions-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1900px;
    margin: 0 auto;
}

.condition-card {
    padding: 30px 20px;
    text-align: center;
}

.condition-card-image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.condition-card-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.condition-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.condition-description {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.link-learn-more {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.link-learn-more:hover {
    color: #666;
}

/* TCM Section - 左文 | 中图 | 右文 三栏布局 */
.tcm-section {
    background-color: #f5f0eb;
    padding: 80px 20px;
}

.tcm-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.tcm-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.tcm-col {
    min-width: 0;
}

.tcm-col-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.tcm-image-wrap {
    width: 100%;
    max-width: 400px;
}

.tcm-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.tcm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto;
}

.tcm-card {
    text-align: left;
    padding: 0 0 30px;
}

.tcm-col-right .tcm-card:last-child {
    padding-bottom: 0;
}

.tcm-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.tcm-card-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.btn-tcm {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-tcm:hover {
    background-color: #c49564;
}

/* Locations Section */
.locations-section {
    background-color: white;
    padding: 80px 20px;
}

/* Index: Testimonials, FAQ, Locations - mobile optimization */
.index-testimonials,
.index-faq,
.index-locations {
    padding: 60px 20px;
}

@media (max-width: 768px) {
    .index-testimonials,
    .index-faq,
    .index-locations {
        padding: 50px 16px;
    }
    
    .index-testimonials .acu-section-title,
    .index-faq .acu-section-title,
    .index-locations .locations-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    
    .index-testimonials .acu-testimonials-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    .index-testimonials .acu-testimonials-inner {
        grid-column: 1 / -1;
    }
    
    .index-testimonials .acu-testimonial-prev {
        justify-self: end;
    }
    
    .index-testimonials .acu-testimonial-next {
        justify-self: start;
    }
    
    .index-testimonials .acu-testimonial-quote {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .index-faq .acu-faq-question {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .index-faq .acu-faq-answer p {
        font-size: 14px;
    }
    
    .index-locations .locations-images-grid {
        gap: 30px;
    }
    
    .index-locations .location-image-item {
        max-width: 100%;
    }
}

.locations-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.locations-image-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.locations-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto 60px;
}

.location-image-item {
    display: flex;
    flex-direction: column;
}

.locations-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1900px;
    margin: 0 auto 60px;
}

/* Single location card - center it */
.locations-grid:has(.location-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 500px;
}

.location-card {
    text-align: center;
    padding: 30px 20px;
}

.location-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.location-address {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 400;
}

.location-phone {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.location-email {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-location {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-location:hover {
    background-color: #c49564;
}

.location-coming-soon {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    padding-top: 60px;
}

.location-name-small {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.01em;
}

.footer-location {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-location strong {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    padding: 12px;
    border: 1px solid #555;
    background-color: #333;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
}

.newsletter-input::placeholder {
    color: #999;
}

.btn-newsletter {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #d4a574;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.btn-newsletter:hover {
    background-color: #c49564;
}

.footer-bottom {
    font-family: 'Inter', 'DM Sans', sans-serif;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

/* SERVICE Section Styles */
.services-section {
    padding: 80px 20px;
    background-color: white;
}

.section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-carousel {
    overflow: hidden;
    margin: 0 auto;
}

.services-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

/* Desktop: 3 cols, 2 logical pages */
.services-carousel-page {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 10px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card-image {
    text-align: center;
    margin-bottom: 20px;
}

.service-card-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a574;
}

.service-card-content {
    flex: 1;
    margin-bottom: 25px;
}

.service-card-text-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.service-card-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card.expanded .service-card-text {
    display: block;
    -webkit-line-clamp: unset;
}

.service-detail-toggle {
    background: none;
    border: none;
    color: #d4a574;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 15px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.service-detail-toggle:hover {
    color: #c49564;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-card-list li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-weight: 400;
}

.service-card-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #d4a574;
    font-weight: bold;
    font-size: 18px;
}

.service-card-list.numbered {
    counter-reset: item;
}


.service-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #d4a574;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #2c2c2c;
}

.service-carousel-btn:hover {
    background-color: #d4a574;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.service-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.service-carousel-prev {
    left: 0;
}

.service-carousel-next {
    right: 0;
}

.service-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.service-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-indicator.active {
    background-color: #d4a574;
    width: 30px;
    border-radius: 6px;
}

.service-indicator:hover {
    background-color: #d4a574;
    opacity: 0.7;
}

.service-indicator-mobile {
    display: none;
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f5f0eb;
}

.pricing-section .container {
    padding: 0 20px;
}

.pricing-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-table thead {
    background-color: #d4a574;
    color: white;
}

.pricing-table th {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 15px;
    text-align: left;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.pricing-table th:first-child {
    padding-left: 25px;
}

.pricing-table th:last-child {
    padding-right: 25px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f9f9f9;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 18px 15px;
    color: #2c2c2c;
    vertical-align: middle;
}

.pricing-table td:first-child {
    padding-left: 25px;
}

.pricing-table td:last-child {
    padding-right: 25px;
}

.pricing-service {
    font-weight: 500;
    color: #2c2c2c;
}

.pricing-chinese {
    color: #555;
    font-size: 14px;
}

.pricing-price {
    font-weight: 600;
    color: #d4a574;
    font-size: 18px;
    white-space: nowrap;
}

.pricing-notes {
    color: #666;
    font-size: 14px;
}

.pricing-col-service {
    width: 35%;
}

.pricing-col-price {
    width: 20%;
}

.pricing-col-notes {
    width: 45%;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: white;
}

.about-content {
    max-width: 1900px;
    margin: 0 auto;
}

.about-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 30px;
}

.about-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.about-card-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.blog-section-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 17px;
    color: #5c5c5c;
    text-align: center;
    max-width: 600px;
    margin: -10px auto 50px;
    line-height: 1.6;
}

.blog-section .blog-posts-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.blog-section .blog-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-section .blog-post-image img {
    transition: transform 0.4s ease;
}

.blog-section .blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-section-cta {
    text-align: center;
}

.btn-blog-view-all {
    display: inline-block;
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #8b5a3c;
    color: white;
    padding: 14px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.btn-blog-view-all:hover {
    background-color: #6d472e;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.blog-excerpt {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Shop Section */
.shop-section {
    padding: 80px 20px;
    background-color: white;
}

.shop-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto;
}

.shop-card {
    text-align: center;
}

.shop-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2c;
}

/* Shop List Page */
.shop-page-hero {
    padding: 50px 20px 30px;
    background-color: #f5f0eb;
    text-align: center;
}

.shop-page-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0;
}

.shop-toolbar {
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #e8e0d8;
}

.shop-toolbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.shop-filter-btn {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #8b5a3c;
    background: transparent;
    color: #2c2c2c;
    border-radius: 4px;
    cursor: pointer;
}

.shop-product-count {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #5c5c5c;
}

.shop-sort {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-sort-label {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #2c2c2c;
}

.shop-sort-select {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #d0c8c0;
    border-radius: 4px;
    background: white;
}

.shop-list-section {
    padding: 50px 20px 80px;
    background-color: #f5f0eb;
}

.shop-list-grid {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-card-link:hover .shop-product-name {
    color: #8b5a3c;
}

/* Product Detail Page */
.product-detail-main {
    padding: 50px 20px 60px;
    background-color: white;
}

.product-detail-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 24px;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f0eb;
    margin-bottom: 16px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f0eb;
    transition: border-color 0.2s;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: #8b5a3c;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 12px;
}

.product-rating {
    font-size: 16px;
    color: #c9a227;
    margin: 0 0 12px;
}

.product-rating-text {
    color: #5c5c5c;
    font-size: 14px;
}

.product-price {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 4px;
}

.product-unit {
    font-size: 14px;
    color: #888;
    margin: 0 0 24px;
}

.product-form {
    margin-bottom: 20px;
}

.product-qty-label {
    display: block;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-qty-input {
    width: 80px;
    padding: 10px 12px;
    border: 1px solid #d0c8c0;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 16px;
}

.btn-add-to-cart {
    display: block;
    width: 100%;
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #8b5a3c;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-to-cart:hover {
    background-color: #6d472e;
}

.product-note {
    font-size: 14px;
    color: #888;
    margin: 0 0 28px;
}

.product-description {
    margin-bottom: 28px;
}

.product-description p {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    margin: 0 0 12px;
}

.product-why-title,
.product-included-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 12px;
}

.product-why ul,
.product-included ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.product-why li,
.product-included li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 6px;
}

.product-benefits-section,
.product-features-section {
    padding: 40px 20px;
    background-color: #f5f0eb;
}

.product-benefits-section .container,
.product-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-benefits-image img,
.product-features-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.product-testimonials-section {
    padding: 60px 20px 80px;
    background-color: white;
}

.product-section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 36px;
    text-align: center;
}

.product-testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.product-testimonial-prev,
.product-testimonial-next {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #8b5a3c;
    background: white;
    color: #8b5a3c;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s;
}

.product-testimonial-prev:hover,
.product-testimonial-next:hover {
    background-color: #8b5a3c;
    color: white;
}

.product-testimonials-track-wrap {
    flex: 1;
    overflow: hidden;
}

.product-testimonial-slide {
    display: none;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.product-testimonial-slide.active {
    display: block;
}

.product-testimonial-stars {
    display: block;
    font-size: 18px;
    color: #c9a227;
    margin-bottom: 12px;
}

.product-testimonial-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin: 0 0 12px;
}

.product-testimonial-slide cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.product-faq-section {
    padding: 60px 20px 80px;
    background-color: #f5f0eb;
}

.product-faq-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #5c5c5c;
    text-align: center;
    margin: 0 0 36px;
}

.product-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.product-faq-item {
    border-bottom: 1px solid #e0d9d2;
}

.product-faq-question {
    width: 100%;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2c2c2c;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-faq-question::after {
    content: '+';
    font-size: 20px;
    color: #8b5a3c;
}

.product-faq-question[aria-expanded="true"]::after {
    content: '−';
}

.product-faq-answer {
    display: none;
    padding: 0 0 20px;
}

.product-faq-answer.active {
    display: block;
}

.product-faq-answer p {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5c5c5c;
    margin: 0;
}

.product-detail-locations {
    padding-top: 60px;
}

@media (max-width: 1024px) {
    .shop-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .shop-page-title {
        font-size: 32px;
    }
    .shop-toolbar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .shop-sort {
        margin-left: 0;
    }
    .shop-list-grid {
        grid-template-columns: 1fr;
    }
    .product-title {
        font-size: 26px;
    }
    .product-testimonials-carousel {
        flex-direction: column;
    }
}

.shop-product-price {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 20px;
}

/* Membership Section */
.membership-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.membership-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.membership-card.featured {
    border: 2px solid #d4a574;
}

.membership-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.membership-price {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 30px;
}

.membership-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.membership-features li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.membership-features li:last-child {
    border-bottom: none;
}

/* Refer Section */
.refer-section {
    padding: 80px 20px;
    background-color: white;
}

.refer-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 40px;
}

.refer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.refer-benefits {
    background-color: #f5f0eb;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.refer-benefits h3 {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.refer-benefits ul {
    list-style: none;
    text-align: left;
}

.refer-benefits li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.refer-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav > ul {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .dropdown-menu {
        min-width: 220px;
    }
    
    .services-carousel-wrapper {
        padding: 0 40px;
    }
    
    .services-carousel-page {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
    
    .service-card {
        min-height: 450px;
        padding: 30px;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 15px;
    }
    
    .pricing-table th:last-child,
    .pricing-table td:last-child {
        padding-right: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .healers-carousel-wrapper {
        padding: 0 40px;
    }
    
    .healers-carousel-page {
        flex: 0 0 25%;
        min-width: 25%;
    }
    
    .healers-carousel-page:has(.healer-card:nth-child(2)) {
        flex: 0 0 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .healer-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tcm-grid {
        grid-template-columns: 1fr;
    }
    
    .tcm-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tcm-col-center {
        order: 1;
    }
    
    .tcm-col-left {
        order: 0;
    }
    
    .tcm-col-right {
        order: 2;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Touch targets min 44px for accessibility */
    .btn-book, .btn-hero, .btn-service, .btn-healer, .btn-location, .btn-expect, .btn-tcm,
    .btn-blog-view-all, .btn-healer-page, .btn-refer-share, .btn-add-to-cart, .btn-healer-detail-book {
        min-height: 44px;
        padding: 12px 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .healer-filter-btn, .blog-category-btn, .shop-filter-btn {
        min-height: 44px;
        padding: 10px 18px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-controls {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .hero-control-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .narrative-title {
        font-size: 28px;
    }
    
    .narrative-text {
        font-size: 15px;
        text-align: left;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav,
    .mobile-nav-backdrop {
        display: block;
    }
    
    .healers-carousel-wrapper {
        padding: 0 20px;
    }
    
    /* Mobile: 1 healer per slide, carousel (index) */
    .healers-carousel-page {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 8px;
    }
    
    /* Legacy: 4 cards per page -> 1 col on mobile */
    .healers-carousel-page:has(.healer-card:nth-child(2)) {
        grid-template-columns: 1fr;
    }
    
    .healer-indicator-mobile {
        display: inline-block;
    }
    
    .healer-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .healer-carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .services-carousel-wrapper {
        padding: 0 20px;
    }
    
    .service-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile: 1 service per slide, carousel */
    .services-carousel-page {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 8px;
    }
    
    .service-indicator-mobile {
        display: inline-block;
    }
    
    .service-card {
        min-height: auto;
        padding: 25px;
    }
    
    .service-card-image img {
        width: auto;
        max-width: 100%;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-card-text {
        font-size: 14px;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        font-size: 13px;
        min-width: 560px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 12px;
    }
    
    .pricing-table th:last-child,
    .pricing-table td:last-child {
        padding-right: 12px;
    }
    
    .pricing-service {
        font-size: 13px;
    }
    
    .pricing-chinese {
        font-size: 12px;
    }
    
    .pricing-price {
        font-size: 16px;
    }
    
    .pricing-notes {
        font-size: 13px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-images-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .press-logos {
        gap: 20px;
    }
    
    .top-banner {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .section-title, .locations-title, .expect-title, .conditions-title, .healers-title {
        font-size: 28px;
        margin-bottom: 36px;
    }
    
    .shop-intro, .narrative-text, .intro-text {
        font-size: 15px;
    }
    
    .footer-links a,
    .footer-title {
        font-size: 14px;
    }
    
    .footer-location {
        font-size: 14px;
    }
    
    .newsletter-input {
        font-size: 16px;
    }
    
    .healer-name, .expect-card-title, .condition-name {
        font-size: 20px;
    }
    
    .healer-specialty, .expect-card-text, .condition-description {
        font-size: 14px;
    }
    
    .location-name {
        font-size: 20px;
    }
    
    .location-address, .location-phone, .location-email {
        font-size: 14px;
    }
    
    .acu-section-title {
        font-size: 26px;
    }
    
    .acu-faq-question {
        font-size: 15px;
    }
    
    .acu-faq-answer p {
        font-size: 14px;
    }
    
    .blog-post-title {
        font-size: 18px;
    }
    
    .blog-post-excerpt {
        font-size: 14px;
    }
    
    .refer-hero-title {
        font-size: 28px;
    }
    
    .refer-hero-intro {
        font-size: 15px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 22px;
    }
    
    /* Prevent horizontal scroll */
    .pricing-table-wrapper {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title, .locations-title, .expect-title, .conditions-title, .healers-title {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .narrative-title {
        font-size: 24px;
    }
    
    .logo a {
        font-size: 16px;
    }
    
    .top-banner {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .contact-hero-title, .faq-hero-title, .privacy-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-subtitle, .faq-hero-subtitle {
        font-size: 15px;
    }
    
    .price-hero-title {
        font-size: 36px;
    }
    
    .healers-page-title {
        font-size: 28px;
    }
    
    .shop-page-title {
        font-size: 28px;
    }
    
    .index-testimonials .acu-testimonial-quote {
        font-size: 15px;
    }
    
    .privacy-body {
        font-size: 15px;
    }
    
    .privacy-body h2 {
        font-size: 20px;
    }
    
    .privacy-body h3 {
        font-size: 16px;
    }
    
    .healer-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .faq-section-heading {
        font-size: 22px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: #f5f0eb;
    padding: 100px 20px 60px;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 20px 100px;
    background-color: white;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-wrap {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-group label {
    display: block;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Inter', 'DM Sans', sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    margin-top: 8px;
}

.contact-locations-wrap {
    padding: 30px 0;
}

.contact-locations-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.contact-address,
.contact-phone,
.contact-email {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-locations-wrap a {
    color: #2d5a3d;
}

.contact-locations-wrap a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrap {
        padding: 18px;
    }
    
    .contact-form-group label {
        font-size: 14px;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background-color: #f5f0eb;
    padding: 100px 20px 60px;
    text-align: center;
}

.faq-hero-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.faq-hero-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.faq-page-section {
    padding: 60px 20px 100px;
    background-color: white;
}

.faq-section-heading {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 50px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e5e5;
}

.faq-section-heading:first-of-type {
    margin-top: 0;
}

@media (max-width: 768px) {
    .faq-section-heading {
        font-size: 24px;
        margin: 40px 0 20px;
    }
}

.faq-page-list {
    margin-bottom: 20px;
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background-color: #f5f0eb;
    padding: 100px 20px 60px;
    text-align: center;
}

.privacy-hero-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
}

.privacy-content-section {
    padding: 60px 20px 100px;
    background-color: white;
}

.privacy-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-body {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.privacy-body h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px;
    padding-top: 24px;
}

.privacy-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.privacy-body p, .privacy-body ul {
    margin-bottom: 16px;
}

.privacy-body ul {
    padding-left: 24px;
}

.privacy-body li {
    margin-bottom: 8px;
}

.privacy-intro {
    font-size: 17px;
}

@media (max-width: 768px) {
    .privacy-hero-title,
    .faq-hero-title {
        font-size: 32px;
    }
}

/* About Us Page Styles */
.about-hero {
    background-color: #f5f0eb;
    padding: 120px 20px 100px;
    text-align: center;
}

.about-hero-content {
    max-width: 1900px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-section {
    padding: 100px 20px;
    background-color: white;
}

.about-section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.about-mission-content {
    max-width: 1600px;
    margin: 0 auto;
}

.about-mission-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.9;
    text-align: center;
    font-weight: 400;
}

.about-founder-section {
    padding: 100px 20px;
    background-color: #f5f0eb;
}

.founder-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image-wrapper {
    width: 100%;
    max-width: 400px;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.founder-description {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.9;
    font-weight: 400;
}

.founder-description strong {
    font-weight: 600;
    color: #2c2c2c;
}

.about-values-section {
    padding: 100px 20px;
    background-color: white;
}

.about-values-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 60px;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.value-description {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

.about-healers-section {
    padding: 100px 20px;
    background-color: #f5f0eb;
}

.about-healers-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Our Healers Page */
.healers-page-hero {
    padding: 60px 20px 40px;
    background-color: #f5f0eb;
    text-align: center;
}

.healers-page-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: -0.02em;
}

.healers-filters-section {
    padding: 0 20px 30px;
    background-color: #f5f0eb;
    border-bottom: 1px solid #e0d9d2;
}

.healer-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.healer-filter-btn {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid #8b5a3c;
    background: transparent;
    color: #2c2c2c;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.healer-filter-btn:hover {
    background-color: #e8e0d8;
    border-color: #8b5a3c;
}

.healer-filter-btn.active {
    background-color: #8b5a3c;
    color: white;
    border-color: #8b5a3c;
}

.healers-page-section {
    padding: 50px 20px 70px;
    background-color: #f5f0eb;
}

.healers-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.healer-page-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.healer-page-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.healer-page-card.hidden {
    display: none;
}

.healer-page-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.healer-page-card-link:hover .healer-page-name {
    color: #8b5a3c;
}

.healer-page-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #e8e0d8;
}

.healer-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healer-page-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 20px 16px 8px;
    letter-spacing: -0.01em;
}

.healer-page-specialty {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #5c5c5c;
    line-height: 1.5;
    margin: 0 16px 12px;
}

.healer-page-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 0 16px;
}

.healer-tag {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 12px;
    color: #8b5a3c;
    background-color: #f5f0eb;
    padding: 4px 10px;
    border-radius: 4px;
}

.btn-healer-page {
    font-family: 'Inter', 'DM Sans', sans-serif;
    display: inline-block;
    background-color: #8b5a3c;
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-healer-page:hover {
    background-color: #6d472e;
}

.healers-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-btn {
    font-family: 'Inter', 'DM Sans', sans-serif;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d0c8c0;
    background: white;
    color: #2c2c2c;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-btn:hover {
    border-color: #8b5a3c;
    color: #8b5a3c;
}

.pagination-btn.active {
    background-color: #8b5a3c;
    color: white;
    border-color: #8b5a3c;
}

.pagination-ellipsis {
    font-size: 14px;
    color: #888;
    padding: 0 4px;
}

.healers-page-locations {
    padding-top: 60px;
}

/* Healer Detail Page */
.healer-detail-hero {
    padding: 60px 20px 80px;
    background-color: #f5f0eb;
}

.healer-detail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.healer-detail-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8e0d8;
}

.healer-detail-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healer-detail-intro {
    padding: 0 0 20px;
}

.healer-detail-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.healer-detail-credential {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #8b5a3c;
    margin: 0 0 24px;
    font-weight: 500;
}

.healer-detail-bio {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin: 0 0 28px;
}

.btn-healer-detail-book {
    display: inline-block;
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #8b5a3c;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-healer-detail-book:hover {
    background-color: #6d472e;
}

.healer-detail-specialties {
    padding: 60px 20px;
    background-color: white;
}

.healer-detail-specialties .container {
    max-width: 1200px;
    margin: 0 auto;
}

.healer-detail-section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 28px;
}

/* Specialties grid – same icons as Benefits Of Acupuncture (acupuncture.html) */
.healer-detail-specialties-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.healer-specialty-item {
    text-align: center;
}

.healer-specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.healer-specialty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.healer-specialty-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.4;
}

.healer-detail-testimonials {
    padding: 60px 20px 80px;
    background-color: #f5f0eb;
}

.healer-detail-testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.healer-detail-testimonials .healer-detail-section-title {
    margin-bottom: 36px;
}

.healer-testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.healer-testimonial-prev,
.healer-testimonial-next {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #8b5a3c;
    background: white;
    color: #8b5a3c;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.healer-testimonial-prev:hover,
.healer-testimonial-next:hover {
    background-color: #8b5a3c;
    color: white;
}

.healer-testimonials-track-wrap {
    flex: 1;
    overflow: hidden;
}

.healer-testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.healer-testimonial-slide {
    flex: 0 0 100%;
    margin: 0;
    padding: 40px 20px;
    text-align: center;
    display: none;
}

.healer-testimonial-slide.active {
    display: block;
}

.healer-testimonial-stars {
    display: block;
    font-size: 18px;
    color: #c9a227;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.healer-testimonial-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin: 0;
}

.healer-detail-locations {
    padding-top: 60px;
}

/* Refer A Friend Page */
.refer-hero {
    padding: 60px 20px 80px;
    background-color: #f5f0eb;
}

.refer-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.refer-hero-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.refer-hero-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin: 0 0 16px;
}

.refer-hero-intro:last-of-type {
    margin-bottom: 0;
}

.refer-hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e0d8;
}

.refer-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.refer-how-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.refer-how-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.refer-section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 50px;
    text-align: center;
}

.refer-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.refer-how-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.refer-how-image {
    width: 100%;
    background-color: #e8e0d8;
    padding: 24px;
    box-sizing: border-box;
}

.refer-how-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.refer-how-body {
    padding: 28px 28px 32px;
    text-align: center;
    flex: 1;
}

.refer-how-step {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 16px;
}

.refer-how-desc {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #5c5c5c;
    margin: 0 0 8px;
}

.refer-how-note {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 0 20px;
}

.btn-refer-share {
    display: inline-block;
    font-family: 'Inter', 'DM Sans', sans-serif;
    background-color: #8b5a3c;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: background-color 0.3s;
}

.btn-refer-share:hover {
    background-color: #6d472e;
}

.refer-locations {
    padding-top: 60px;
}

@media (max-width: 1024px) {
    .refer-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .refer-hero-title {
        font-size: 34px;
    }
    
    .refer-how-grid {
        grid-template-columns: 1fr;
    }
    
    .healer-detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .healer-detail-title {
        font-size: 32px;
    }
    
    .healer-detail-specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .healers-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .healers-page-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .healers-page-hero {
        padding: 40px 16px 30px;
    }
    
    .healers-page-title {
        font-size: 32px;
    }
    
    .healer-filters {
        gap: 8px;
    }
    
    .healer-filter-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .healers-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .healer-page-name {
        font-size: 20px;
    }
    
    .pagination-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .healer-detail-hero {
        padding: 40px 16px 60px;
    }
    
    .healer-detail-title {
        font-size: 28px;
    }
    
    .healer-detail-bio {
        font-size: 16px;
    }
    
    .healer-detail-section-title {
        font-size: 24px;
    }
    
    .healer-detail-specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .healer-specialty-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .healer-specialty-title {
        font-size: 15px;
    }
    
    .healer-testimonials-carousel {
        flex-direction: column;
    }
    
    .refer-hero {
        padding: 40px 16px 60px;
    }
    
    .refer-hero-title {
        font-size: 28px;
    }
    
    .refer-hero-intro {
        font-size: 16px;
    }
    
    .refer-section-title {
        font-size: 26px;
        margin-bottom: 36px;
    }
    
    .refer-how-step {
        font-size: 22px;
    }
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 60px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-mission-section,
    .about-founder-section,
    .about-values-section,
    .about-healers-section {
        padding: 60px 20px;
    }
    
    .about-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .about-mission-text,
    .founder-description,
    .value-description {
        font-size: 15px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .value-title {
        font-size: 20px;
    }
}

/* Acupuncture Page Styles */
.acu-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.acu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.acu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.acu-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.acu-hero-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.acu-hero-content .btn-hero {
    margin-bottom: 25px;
}

.acu-hero-sub {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.acu-what-section {
    padding: 100px 20px;
    background-color: white;
}

.acu-section-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.acu-what-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.acu-what-image {
    width: 100%;
}

.acu-what-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.acu-what-content {
    text-align: left;
}

.acu-what-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 25px;
}

.acu-what-content .btn-service {
    margin-top: 20px;
}

.acu-benefits-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.acu-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.acu-benefit-item {
    text-align: center;
}

.acu-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acu-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.acu-benefit-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.acu-immersive-section {
    padding: 80px 20px;
    background-color: white;
}

.acu-immersive-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    color: #2c2c2c;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.4;
}

.acu-immersive-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.acu-immersive-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.acu-immersive-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}

.acu-pricing-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.acu-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.acu-pricing-card {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.acu-pricing-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.acu-pricing-price {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    color: #d4a574;
    margin-bottom: 20px;
}

.acu-pricing-price strong {
    font-weight: 600;
}

.acu-pricing-price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.acu-pricing-desc {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.acu-testimonials-section {
    padding: 80px 20px;
    background-color: white;
}

.acu-testimonials-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.acu-testimonial-prev,
.acu-testimonial-next {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    border: 2px solid #d4a574;
    background: white;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.acu-testimonial-prev svg,
.acu-testimonial-next svg {
    width: 24px;
    height: 24px;
}

.acu-testimonial-prev:hover,
.acu-testimonial-next:hover {
    background: #d4a574;
    color: white;
}

.acu-testimonials-inner {
    overflow: hidden;
    flex: 1;
}

.acu-testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.acu-testimonial-slide.active {
    display: block;
}

.acu-testimonial-quote {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 24px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0 0 20px;
}

.acu-testimonial-cite {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    font-style: normal;
}

.acu-testimonial-stars {
    text-align: center;
    font-size: 18px;
    color: #d4a574;
    margin-top: 30px;
}

.acu-faq-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.acu-faq-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.acu-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.acu-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.acu-faq-question {
    width: 100%;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.acu-faq-question::after {
    content: "+";
    font-size: 24px;
    color: #d4a574;
    font-weight: 300;
}

.acu-faq-item.open .acu-faq-question::after {
    content: "−";
}

.acu-faq-question:hover {
    color: #d4a574;
}

.acu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acu-faq-item.open .acu-faq-answer {
    max-height: 500px;
}

.acu-faq-answer p {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding: 0 0 25px;
    margin: 0;
}

.acu-science-section {
    padding: 80px 20px;
    background-color: white;
}

.acu-science-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.acu-science-content {
    max-width: 100%;
}

.acu-science-content p {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 25px;
}

.acu-science-content ul {
    margin: 25px 0;
    padding-left: 30px;
}

.acu-science-content li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 12px;
}

.acu-science-content .link-learn-more {
    display: inline-block;
    margin-top: 20px;
}

.acu-science-image {
    width: 100%;
}

.acu-science-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.acu-shop-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.acu-shop-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
}

/* Welcome To Your Sanctuary */
.acu-sanctuary-section {
    padding: 80px 20px;
    background-color: white;
}

.acu-sanctuary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    height: 420px;
}

.acu-sanctuary-left {
    overflow: hidden;
    border-radius: 8px;
    min-height: 0;
}

.acu-sanctuary-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.acu-sanctuary-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

.acu-sanctuary-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 0;
}

.acu-sanctuary-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .acu-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    .acu-immersive-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .acu-hero-title {
        font-size: 36px;
    }
    .acu-hero-sub {
        font-size: 16px;
    }
    .acu-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .acu-benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    .acu-benefit-title {
        font-size: 15px;
    }
    .acu-what-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .acu-what-image {
        order: 1;
    }
    .acu-what-content {
        order: 2;
    }
    .acu-science-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .acu-science-content {
        order: 1;
    }
    .acu-science-image {
        order: 2;
    }
    .acu-pricing-cards {
        grid-template-columns: 1fr;
    }
    .acu-immersive-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .acu-sanctuary-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .acu-sanctuary-left img {
        min-height: 280px;
    }
    .acu-sanctuary-image img {
        min-height: 220px;
    }
    .acu-pricing-card {
        padding: 35px;
    }
    .acu-testimonials-wrapper {
        flex-wrap: wrap;
    }
    .acu-testimonial-quote {
        font-size: 20px;
    }
}

/* Pricing Page Styles */
.price-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.price-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.price-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.price-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.price-hero-title {
    font-family: 'Cormorant', 'Georgia', serif;
    font-size: 56px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.price-subtitle-section {
    padding: 50px 20px;
    background-color: white;
}

.price-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.price-block-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.price-block-section.price-block-alt {
    background-color: white;
}

.price-block-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.price-block-intro {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.price-block-link {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

.price-cards-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.price-cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

.price-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.price-card-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.price-card-price {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 24px;
    color: #d4a574;
    margin-bottom: 20px;
}

.price-card-price strong {
    font-weight: 600;
}

.price-card-price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.price-card-desc {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.price-card-note {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-bottom: 25px;
}

.price-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.price-card-list li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.price-card-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 600;
}

.price-card .btn-service {
    margin-top: auto;
}

/* The Magic Of Consistency */
.price-magic-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.price-magic-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.price-magic-content p {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 25px;
}

.price-magic-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.price-magic-list li {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.price-magic-list li::before {
    content: "🔹";
    position: absolute;
    left: 0;
}

.price-magic-image {
    width: 100%;
}

.price-magic-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Unlock 20% Off CTA */
.price-cta-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.price-cta-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.price-cta-text {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-cta-form {
    max-width: 450px;
    margin: 0 auto;
    flex-direction: row;
}

.price-cta-form .newsletter-input {
    flex: 1;
}

/* Pricing page responsive */
@media (max-width: 1024px) {
    .price-cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-magic-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .price-hero-title {
        font-size: 36px;
    }
    .price-subtitle-section {
        padding: 35px 20px;
    }
    .price-subtitle {
        font-size: 16px;
    }
    .price-block-section {
        padding: 60px 20px;
    }
    .price-block-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .price-cards-3,
    .price-cards-4 {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 30px 25px;
    }
    .price-card-title {
        font-size: 18px;
    }
    .price-magic-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-magic-content {
        order: 1;
    }
    .price-magic-image {
        order: 2;
    }
    .price-cta-form {
        flex-direction: column;
    }
}

/* Blog List Page Styles */
.blog-header-section {
    padding: 100px 20px 60px;
    background-color: white;
    text-align: center;
}

.blog-main-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

.blog-categories-section {
    padding: 0 20px 60px;
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1900px;
    margin: 0 auto;
}

.blog-category-btn {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
}

.blog-category-btn:hover {
    color: #2c2c2c;
}

.blog-category-btn.active {
    color: #2c2c2c;
    border-bottom-color: #d4a574;
    font-weight: 500;
}

.blog-posts-section {
    padding: 80px 20px;
    background-color: white;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1900px;
    margin: 0 auto 60px;
}

.blog-post-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-post-excerpt {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 13px;
    color: #999;
}

.blog-post-date {
    font-weight: 400;
}

.blog-post-tag {
    color: #d4a574;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c2c2c;
    background: none;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #f5f0eb;
    border-color: #d4a574;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-number {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    background: none;
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    background-color: #f5f0eb;
    border-color: #d4a574;
}

.pagination-number.active {
    background-color: #d4a574;
    color: white;
    border-color: #d4a574;
    font-weight: 500;
}

.pagination-ellipsis {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    padding: 0 5px;
}

/* Blog Detail Page Styles */
.blog-detail-section {
    padding: 100px 20px;
    background-color: white;
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.blog-detail-title {
    font-family: 'Cormorant', 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-detail-meta {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.blog-detail-image {
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #2c2c2c;
}

.blog-detail-content p {
    margin-bottom: 25px;
    font-weight: 400;
}

.blog-detail-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px;
}

.blog-detail-content h2 {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.blog-detail-content ul {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.blog-detail-content strong {
    font-weight: 600;
    color: #2c2c2c;
}

.blog-detail-author-note {
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.blog-detail-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #d4a574;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.share-link {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 14px;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: #d4a574;
}

.related-posts-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.related-posts-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

/* Responsive Design for Blog Pages */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-detail-title {
        font-size: 36px;
    }
    
    .blog-detail-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .blog-header-section {
        padding: 60px 20px 40px;
    }
    
    .blog-main-title {
        font-size: 36px;
    }
    
    .blog-categories {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .blog-category-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .blog-posts-section {
        padding: 60px 20px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post-image {
        height: 250px;
    }
    
    .blog-post-content {
        padding: 25px;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .blog-detail-section {
        padding: 60px 20px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
    
    .blog-detail-intro {
        font-size: 18px;
    }
    
    .blog-detail-content {
        font-size: 15px;
    }
    
    .blog-detail-content h2 {
        font-size: 22px;
        margin-top: 40px;
    }
    
    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pagination-numbers {
        flex-wrap: wrap;
    }
}
