        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }
        
       :root {
    /* 主色调：浅蓝（更轻盈、清爽） */
    --primary: #A0D2DB;
    /* 主色深色块（用于交互状态） */
    --primary-dark: #88C0C8;
    /* 主色浅色块（用于大面积背景） */
    --primary-light: #E9F6F7;

    /* 辅助色：柔和天蓝（与主色协调） */
    --secondary: #BCE0F1;
    /* 背景浅色：冰晶白（近白色，带微弱蓝调） */
    --light: #F9FCFD;
    /* 深色文字：深海蓝（加深以保证可读性） */
    --dark: #1A2C3D;
    /* 普通文字：灰蓝（加深以提高可读性） */
    --text: #3D566E;

    /* 基础白色 */
    --white: #ffffff;
    /* 点缀色：淡雅蓝灰 */
    --accent: #DCEEF8;

    /* 主色文本（用于浅色背景上的彩色文字，确保对比度） */
    --primary-text: #4A8C9B;

    /* 阴影：更柔和的蓝色调阴影 */
    --shadow: 0 5px 20px rgba(160, 210, 219, 0.12);
    --shadow-hover: 0 15px 30px rgba(160, 210, 219, 0.18);
    --shadow-soft: 0 3px 10px rgba(160, 210, 219, 0.1);

    /* 过渡效果：保留原配置（确保交互流畅度） */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s ease;
}
        
        body { /* 修正字体设置 */
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
            background: var(--light);
            font-size: 16px;
            padding-top: 50px;
        background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--light) 100%);
        }
        body { font-family: 'Montserrat', sans-serif; } /* 使用引入的字体 */
        
        h1, h2, h3, h4, h5 {
            font-family: 'Cabin', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark);
        }
        h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; } /* 使用引入的字体 */
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 弹窗 */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        background-color: rgba(58, 80, 107, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-container {
        background: linear-gradient(135deg, var(--primary-light), var(--light));
            border-radius: 15px;
            overflow: hidden;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
        box-shadow: 0 25px 50px rgba(58, 80, 107, 0.25);
            opacity: 0;
        }
        
        .popup-overlay.active .popup-container {
            transform: scale(1);
            opacity: 1;
        }
        
        .popup-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 25px 20px;
            text-align: center;
            position: relative;
        }
        
        .popup-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .popup-header p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-slow);
            color: white;
            font-size: 18px;
        }
        
        .popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .popup-content {
            padding: 30px;
            text-align: center;
        }
        
        .popup-content img {
            max-width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            width: 240px;
            height: 240px;
            object-fit: cover;
        }
        
        .popup-content h3 {
            color: var(--primary-text);
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .popup-content p {
            margin-bottom: 25px;
            line-height: 1.7;
            color: var(--text);
        }
        
        .popup-offer {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 20px;
            display: inline-block;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .popup-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .popup-btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            font-size: 16px;
            cursor: pointer;
        }
        
        .popup-btn.primary {
            background: var(--primary);
            color: white;
        box-shadow: 0 5px 15px rgba(160, 210, 219, 0.4);
        }
        
        .popup-btn.primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(160, 210, 219, 0.6);
        }
        
        .popup-btn.secondary {
            background: transparent;
            color: var(--primary-text);
            border: 2px solid var(--primary);
        }
        
        .popup-btn.secondary:hover {
        background: rgba(160, 210, 219, 0.1);
            transform: translateY(-3px);
        }
        
        /* 按钮 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-slow);
            border: 2px solid var(--primary);
            font-size: 15px;
            cursor: pointer;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .btn:active {
            transform: translateY(2px);
        }
        
        .btn:focus {
        outline: 3px solid rgba(160, 210, 219, 0.3);
            outline-offset: 2px;
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-text);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-text);
        }
        
        /* 导航栏 */
        .secondary-nav {
            background: linear-gradient(135deg, var(--light), var(--primary-light));
            padding: 12px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transform: translateY(0);
            transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(160, 210, 219, 0.2);
        }
        
        .secondary-nav.hide {
            transform: translateY(-100%);
        }
        
        .secondary-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        
        .contact-info {
            display: flex;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-text);
            margin: 0;
        }
        
        .contact-item a {
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
            align-items: center;
            margin: 0 0;
        }
        
        .contact-item a:hover {
            color: var(--primary-dark);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--primary-text);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* 主导航栏 */
        header {
            position: fixed;
            top: 66px;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.88);
            transition: var(--transition);
            padding: 8px 0;
            box-shadow: 0 4px 18px rgba(26, 44, 61, 0.06);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        
        header.scrolled {
            background: rgba(255, 254, 254, 0.98);
            box-shadow: var(--shadow);
            top: 0;
            padding: 6px 0;
            margin-top: 0;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            gap: 20px;

        }

        .main-header nav {
            display: flex;
            justify-content: flex-end;
            flex: 1;
            min-width: 0;
        }
        
        .logo img {
            height: 54px;
            transition: all 0.3s ease;
            loading: eager;
            width: auto;
        }
        
        header.scrolled .logo img {
            height: 40px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
        }
        
        nav ul li {
            margin: 0;
        }
        
        nav ul li a {
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            position: relative;
            transition: var(--transition);
            padding: 8px 16px;
            letter-spacing: 0;
            color: var(--dark);
            white-space: nowrap;
        }
        
        header.scrolled nav ul li a {
            color: var(--dark);
        }
        
        nav ul li a:hover {
            color: var(--primary-text);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .nav-btn {
            background: var(--primary);
            border-radius: 30px;
            padding: 10px 18px !important;
            transition: var(--transition);
        }
        
        .nav-btn:hover {
            background: var(--primary-dark) !important;
            color: var(--white) !important;
            transform: translateY(-3px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
            transition: var(--transition-slow);
            z-index: 1001;
        }
        
        header.scrolled .mobile-menu-btn {
            color: var(--primary-text);
        }
        
        .mobile-menu-btn:hover {
            color: var(--primary-text);
        }
        
        /* Hero 区域 */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            color: #fff;
        aria-label: "Welcome to Tranquility spa - main banner";
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('picture/851e1c9e181d40b6b87b72cb733f8eb0.webp') center/cover no-repeat;
            background-attachment: fixed;
            z-index: -1;
            transform: scale(1);
            opacity: 0.9;
            transition: transform 15s ease-in-out, opacity 15s ease-in-out;
        }
        
        .hero-bg.animate {
            animation: backgroundZoom 15s ease-in-out forwards;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 20px;
            position: relative;
            z-index: 10;
            transform: translateY(20px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .hero-content.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.4);
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
        }
        
        .hero h3 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 2rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
            font-family: 'Open Sans', sans-serif;
            color: #fff;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 10;
        }
        
        .wave-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 150px;
            overflow: hidden;
            line-height: 0;
            z-index: 3;
        }
        
        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
            transform: rotate(180deg);
        }
        
        .wave-divider .shape-fill {
            fill: var(--light);
        }
        
        /* 内容区域 */
        .content-section {
            padding: 10px 0;
            position: relative;
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--light) 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 0px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            margin-top: 20px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        /* 关于区域 */
        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 400;
            line-height: 1.6;
        }
        
        .about-inner {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            align-items: center;
        }
        
        .about-text {
            flex: 0 0 45%;
            text-align: right;
            padding-right: 5%;
        }
        
        .about-description {
            flex: 0 0 45%;
            text-align: left;
            padding-left: 5%;
        }
        
        .about-text h3 {
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .about-description p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
        }

        /* 水平滚动卡片容器 */
        .vertical-cards-container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 25px;
            padding: 25px 15px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) transparent;
            margin: 0;
            padding: 15px;
        }
        
        .vertical-cards-container::-webkit-scrollbar {
            height: 8px;
            background-color: transparent;
        }
        
        .vertical-cards-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        /* 卡片基础样式 */
        .card-base {
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
            animation: fadeInUp 0.6s forwards;
        }
        
        .vertical-service-card {
            flex: 0 0 auto;
            width: 280px;
            border-radius: 10px;
            overflow: hidden;
        box-shadow: 0 10px 30px rgba(160, 210, 219, 0.2);
        background: linear-gradient(135deg, var(--light), var(--primary-light));
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        border: 1px solid rgba(160, 210, 219, 0.15);
            animation: glow 3s infinite;
            animation-delay: 0s;
        }
        
        .vertical-service-card:hover {
            transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(160, 210, 219, 0.3);
        border-color: rgba(160, 210, 219, 0.3);
        }
        
        .service-image {
            height: 180px;
            position: relative;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            loading: lazy;
        }
        
        .vertical-service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-info {
            padding: 22px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-header {
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .service-name {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
            margin-bottom: 8px;
        }
        
        .popular-badge {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin-top: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .service-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px dashed var(--primary-light);
        }
        
        .detail-row:last-child {
            border-bottom: none;
        }
        
        .detail-row.full-width {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
            padding: 12px 0;
        }
        
        .detail-label {
            font-weight: 600;
            color: var(--text);
            font-size: 0.9rem;
        }
        
        .duration, .price {
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .price {
            color: var(--primary-text);
            font-size: 1.3rem;
        }
        
        .description {
            color: var(--text);
            font-size: 0.92rem;
            line-height: 1.6;
        }
        
        .book-button {
            display: block;
            background: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: var(--transition-slow);
            border: 2px solid var(--primary);
            font-size: 0.95rem;
            cursor: pointer;
        }
        
        .book-button:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .book-button:active {
            transform: translateY(2px);
        }
        
        /* 特别优惠样式 */
        .special-offer {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 22px;
            border-radius: 10px;
            margin: 0 auto 35px;
        box-shadow: 0 15px 30px rgba(160, 210, 219, 0.3);
            text-align: center;
            max-width: 800px;
            animation: glow 3s infinite;
        }
        
        .special-offer h2 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .special-offer p {
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .highlight {
            font-weight: 700;
            color: var(--accent);
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .divider-lg {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            margin: 35px auto;
            max-width: 600px;
            border: none;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 10px auto 0;
            color: var(--text);
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            font-weight: 400;
            line-height: 1.8;
        }
        
        /* 礼券区域 */
        .gift-section {
            background: linear-gradient(rgb(255 255 255 / 92%), var(--primary-light)), url(https://images.unsplash.com/photo-1549060279-7e168fce7090?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80) center / cover no-repeat;
            color: var(--light);
            text-align: center;
            padding: 30px 0;
            position: relative;
            background-attachment: fixed;
        }
        
        .gift-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .gift-content h3 {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        /* 服务区域 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .service-card {
            background: linear-gradient(135deg, #f8fafc, #f5f9f8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(76, 175, 135, 0.2);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            animation: glow 3s infinite;
        border: 1px solid rgba(160, 210, 219, 0.15);
            animation-delay: 0s;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(160, 210, 219, 0.3);
        }
        
        .service-image {
            height: 300px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            loading: lazy;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 30px;
            position: relative;
        }
        
        .service-content h3 {
            color: var(--primary-text);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: var(--text);
            font-size: 1rem;
            line-height: 1.8;
        }
        
        .service-content a {
            display: inline-flex;
            align-items: center;
            margin-top: 10px;
            color: var(--primary-text);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 15px;
            gap: 8px;
        }
        
        .service-content a:hover {
            color: var(--primary-dark);
            gap: 12px;
        }
        
        /* 评价区域 */
        .testimonial-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--light);
            padding: 100px 0;
        }
        
        .testimonial-container {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-image {
            flex: 0 0 40%;
            padding: 20px;
            transform: translateX(-30px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .testimonial-image.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        .testimonial-image img {
            border-radius: 10px;
            box-shadow: var(--shadow-hover);
            width: 100%;
            height: auto;
            display: block;
            loading: lazy;
        }
        
        .testimonial-content {
            flex: 0 0 60%;
            padding: 0 40px;
            font-size: 22px;
            font-style: italic;
            line-height: 1.8;
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 300;
            transform: translateX(30px);
            opacity: 0;
            transition: all 1s ease 0.2s;
        }
        
        .testimonial-content.animate {
            transform: translateX(0);
            opacity: 1;
        }
        
        /* 页脚 */
        .footer-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--light);
            padding: 20px 0 50px;
            position: relative;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
        }
        
        .footer-info {
            flex: 0 0 40%;
        }
        
        .footer-map {
            flex: 0 0 55%;
        }
        
        .footer-info h3 {
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px; 
            color: var(--white); /* 统一页脚标题颜色 */
        }
        
        .footer-info h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--light);
        }
        
        .footer-info p {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .footer-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        .footer-map iframe {
            width: 100% !important;
            height: 250px;
            border: 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        
        .copyright {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            margin-left: 25px;
            font-size: 16px;
            transition: var(--transition);
            opacity: 0.9;
        }
        
        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(100px);
            visibility: hidden;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* 水平滚动提示 */
        .scroll-hint {
            display: block;
            text-align: center;
            font-size: 14px;
            color: #fff;
            margin-top: 10px;
            font-weight: 500;
            animation: pulse 2s infinite;
            font-size: 13px;
            color: var(--primary-text);
            margin: 15px 0;
        }
        
        /* 装饰元素 */
        .heart-decoration {
            position: absolute;
            color: var(--primary);
            font-size: 24px;
            opacity: 0.6;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }
        
        .candle-light {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
        background: radial-gradient(circle, rgba(160, 210, 219, 0.6) 0%, rgba(160, 210, 219, 0) 70%);
            filter: blur(15px);
            z-index: 0;
            animation: flicker 4s infinite alternate;
        }
        
        .romantic-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.3;
            background: 
            radial-gradient(circle at 10% 20%, rgba(160, 210, 219, 0.2) 0%, transparent 20%),
            radial-gradient(circle at 90% 80%, rgba(160, 210, 219, 0.2) 0%, transparent 20%),
            radial-gradient(circle at 50% 50%, rgba(160, 210, 219, 0.1) 0%, transparent 30%);
        }

        .footer-info h3 {
            color: #9abdf5;
        }
        
        /* 动画 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
           100% { opacity: 0.6; }
        }

        @keyframes backgroundZoom {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(1.05); opacity: 1; }
        }
        
        @keyframes flicker {
            0% { opacity: 0.4; transform: scale(0.9); }
            50% { opacity: 0.7; transform: scale(1.0); }
            100% { opacity: 0.5; transform: scale(1.1); }
        }
        
        @keyframes glow {
        0% { box-shadow: 0 0 10px rgba(160, 210, 219, 0.4); }
        50% { box-shadow: 0 0 20px rgba(160, 210, 219, 0.6); }
        100% { box-shadow: 0 0 10px rgba(160, 210, 219, 0.4); }
        }

        /* 响应式设计 */
        @media (max-width: 760px) {
            .scroll-hint {
                display: none;
            }
            .hero-bg {
                background: url('picture/851e1c9e181d40b6b87b72cb733f8eb0.webp') center/cover no-repeat;
                background-attachment: scroll;
            }
            .services-grid {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 25px;
                padding: 0px 15px;
                scrollbar-width: thin;
                scrollbar-color: var(--primary) transparent;
                margin: 0 -15px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }
            
            .services-grid::-webkit-scrollbar {
                display: none;
            }
            
            .service-card {
                flex: 0 0 auto;
                width: 280px;
                min-width: 280px;
                max-width: 280px;
            }
            
            .testimonial-container {
                flex-direction: column;
            }
            
            .testimonial-image, .testimonial-content {
                flex: 0 0 100%;
                width: 100%;
                padding: 20px;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-info, .footer-map {
                flex: 0 0 100%;
                width: 100%;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 900px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .main-header {
                gap: 12px;
            }

            .main-header nav {
                flex: 0 0 auto;
            }

            nav ul {
                flex-wrap: nowrap;
            }
            
            header.scrolled .main-header {
                justify-content: center;
            }
            
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--light);
                flex-direction: column;
                padding: 100px 30px 30px;
                box-shadow: -5px 0 25px rgba(0,0,0,0.1);
                transition: var(--transition);
                z-index: 1000;
                gap: 10px;
            }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 8px 0;
            }
            
            nav ul li a {
                display: block;
                padding: 12px 15px;
                color: var(--dark);
                border-radius: 8px;
                transition: var(--transition);
            }
            
            nav ul li a:hover {
            background: rgba(160, 210, 219, 0.1);
            }
            
            header.scrolled nav ul li a {
                color: var(--dark);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h3 {
                font-size: 1.4rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .about-inner {
                flex-direction: column;
            }
            
            .about-text, .about-description {
                flex: 0 0 100%;
                width: 100%;
                padding: 0;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                margin-top: 20px;
            }
            
            .footer-links a {
                margin: 0 10px;
            }
            
            .heart-decoration, .candle-light {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .secondary-nav {
                padding: 10px 0;
            }
            
            .secondary-nav .container {
                flex-direction: column;
                gap: 5px;
            }
            
            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            header {
                top: 70px;
            }

            body {
                padding-top: 85px;
            }
            
            header.scrolled {
                top: 0;
                margin-top: 0;
            }
        }
        
        @media (max-width: 480px) {
            .back-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero h3 {
                font-size: 1.2rem;
            }
            
            .logo img {
                height: 48px;
            }
            
            header.scrolled .logo img {
                height: 40px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .service-image {
                height: 250px;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            body {
                padding-top: 85px;
            }
            
            header {
                top: 70px;
            }
        }

        .subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--primary-text);
            line-height: 1.6;
        }
        
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 16px;
            padding: 30px;
        box-shadow: 0 10px 30px rgba(160, 210, 219, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(160, 210, 219, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(160, 210, 219, 0.25);
        }
        
        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card p {
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        }
        
        .heart-decoration {
            position: fixed;
            z-index: 1;
            opacity: 0.7;
            font-size: 1.8rem;
            animation: float 5s infinite ease-in-out;
            transition: transform 0.3s ease;
        }
        
        .heart-decoration:hover {
            opacity: 1;
            transform: scale(1.5);
            animation: pulse 0.8s infinite alternate;
        }
        
        .heart-1 { top: 15%; left: 5%; color: var(--primary); animation-delay: 0s; }
        .heart-2 { top: 25%; right: 7%; color: var(--primary); animation-delay: 1s; }
        .heart-3 { top: 70%; left: 8%; color: var(--primary); animation-delay: 2s; }
        .heart-4 { top: 50%; left: 18%; color: var(--primary); animation-delay: 3s; }
        .heart-5 { top: 10%; right: 15%; color: var(--primary); animation-delay: 0.5s; }
        .heart-6 { top: 65%; right: 10%; color: var(--primary); animation-delay: 1.5s; }
        .heart-7 { top: 35%; left: 12%; color: var(--primary); animation-delay: 2.5s; }
        .heart-8 { top: 80%; right: 20%; color: var(--primary); animation-delay: 3.5s; }
        .heart-9 { top: 20%; left: 25%; color: var(--primary); animation-delay: 0.8s; }
        .heart-10 { top: 55%; right: 25%; color: var(--primary); animation-delay: 1.8s; }
        .heart-11 { top: 40%; right: 5%; color: var(--primary); animation-delay: 2.8s; }
        .heart-12 { top: 75%; left: 20%; color: var(--primary); animation-delay: 3.8s; }
        
        .mobile-hearts {
            display: none;
            position: fixed;
            z-index: 1;
            opacity: 0.7;
            font-size: 1.2rem;
            animation: float 5s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.3); }
        }
        
        .footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
            color: var(--text);
            font-size: 1.1rem;
            position: relative;
            z-index: 10;
        }
        
        .footer p {
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .social-icons a:hover {
            transform: translateY(-5px) rotate(10deg);
        }
        
        /* 手机适配 */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .heart-decoration {
                display: none;
            }
            
            .mobile-hearts {
                display: block;
            }
            
            .mobile-heart-1 { top: 10%; left: 5%; color: var(--primary); animation-delay: 0s; }
            .mobile-heart-2 { top: 15%; right: 7%; color: var(--primary); animation-delay: 1s; }
            .mobile-heart-3 { top: 85%; left: 8%; color: var(--primary); animation-delay: 2s; }
            .mobile-heart-4 { top: 90%; right: 10%; color: var(--primary); animation-delay: 3s; }
            .mobile-heart-5 { top: 25%; left: 15%; color: var(--primary); animation-delay: 0.5s; }
            .mobile-heart-6 { top: 75%; right: 15%; color: var(--primary); animation-delay: 1.5s; }
            
            .card {
                padding: 20px;
            }
            
            .card h3 {
                font-size: 1.5rem;
            }
            
            .social-icons a {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
            }
            
            .social-icons {
                gap: 15px;
            }
            
            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        /* ====== 联系表单（从 index4.html 移植）====== */
        .contact-form-container {
            max-width: 800px;
            margin: 60px auto 0;
            background-color: #f9f7f7;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary);
        }
        
        .contact-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            color: #5a5a5a;
            transition: all 0.3s ease;
            background-color: #fff;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 5px rgba(160, 210, 219, 0.3);
        }

        .form-group-full {
            grid-column: 1 / -1;
        }

        .form-submit {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 10px;
        }

        @media (max-width: 767px) {
            .contact-form-container {
                padding: 20px;
                margin-top: 40px;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }
            #contactForm {
                padding-top: 20px !important;
            }
        }


        @media (max-width: 760px) {
            .footer-map iframe {
                width: 100% !important;
                height: 250px;
            }
            
            .vertical-cards-container {
                margin: 0;
                padding: 15px;
            }
            
            .services-grid {
                margin: 0;
            }
        }

        /* Pricing Table Styles */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            font-size: 1rem;
            overflow-x: auto;
            display: block;
        }
        .pricing-table th, .pricing-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--primary-light);
            white-space: nowrap;
        }
        .pricing-table th {
            background-color: var(--primary-light);
            color: var(--primary-text);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .pricing-table td {
            color: var(--text);
        }
        .pricing-table .total-price {
            font-weight: 700;
            color: var(--primary-text);
            font-size: 1.1rem;
        }

        @media (max-width: 600px) {
            .pricing-table {
                font-size: 0.9rem;
            }
        }
    /* 原价划掉效果（贯穿线+颜色弱化） */
.original-price {
    /* 贯穿线样式 */
    text-decoration: line-through; 
    text-decoration-thickness: 2px; /* 线粗 */
    text-decoration-color: var(--primary); /* 线颜色（与品牌色一致） */
    text-underline-offset: 4px; /* 线与文字间距 */
    
    /* 视觉弱化 */
    color: #999; /* 原价颜色变灰 */
    opacity: 0.8; /* 轻微透明 */
    margin-right: 10px; /* 与优惠价间距 */
    font-weight: 400; /* 取消加粗 */
}


@media (max-width: 768px) {
    .original-price {
        text-decoration-thickness: 1.5px;
        text-underline-offset: 2px;
        margin-right: 8px;
    }
}

        @media (max-width: 760px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-info, .footer-map {
                width: 100%;
                padding: 0 15px;
            }
            .gallery-grid {
                display: none;
            }
            .mobile-gallery {
                display: flex;
            }
        }

        .mobile-gallery-item {
            display: none;
        }

        /* Gallery Section */
        .gallery-section {
            margin-top: 0px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 0px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--dark);
            display: inline-block;
            padding-bottom: 15px;
            margin-top: 20px;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .gallery-container {
            overflow: hidden;
        }

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

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            height: 300px;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            loading: lazy;
            width: 600px;
            height: 400px;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease 0.1s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 760px) {
            .mobile-gallery-item {
                display: inline;
            }
            .gallery-grid {
                display: none;
            }
            .mobile-gallery {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                padding: 0 0 20px;
                gap: 15px;
                -webkit-overflow-scrolling: touch;
            }
            
            .mobile-gallery::-webkit-scrollbar {
                display: none;
            }
            
            .mobile-gallery-item {
                scroll-snap-align: start;
                min-width: 65vw;
                width: 85vw;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
                height: 320px;
                position: relative;
                flex-shrink: 0;
            }
            
            .mobile-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 15px;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
                color: white;
            }
            
            .mobile-gallery {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .scroll-indicator {
                display: block;
                text-align: center;
                font-size: 14px;
                color: var(--primary-text);
                margin-top: 10px;
                font-weight: 500;
                animation: pulse 2s infinite;
            }
            
            .gallery-section .section-title h2 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
        }

        @keyframes slide-in {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

        .mobile-gallery-item {
            animation: slide-in 0.5s ease-out forwards;
        }

        .mobile-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            loading: lazy;
        }

        .mobile-gallery-item:hover img {
            transform: scale(1.05);
        }
        
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        .mobile-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
        }

        /* Lightbox CSS */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }
        .lightbox-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            max-height: 80vh;
            object-fit: contain;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 2002;
        }
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            -webkit-user-select: none;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 2002;
        }
        .next { right: 0; border-radius: 3px 0 0 3px; }
        .prev { left: 0; border-radius: 3px 0 0 3px; }
        .prev:hover, .next:hover { background-color: rgba(0, 0, 0, 0.8); }

        /* Hide nav buttons for single image view */
        .lightbox.single-image .prev,
        .lightbox.single-image .next {
            display: none;
        }

/* 分组价目表 */
.pricing-card {
    max-width: 980px;
    margin: 40px auto;
    padding: 24px;
}

.pricing-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
}

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

.pricing-group {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(160, 210, 219, 0.35);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.pricing-group-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
}

.pricing-group h3 {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary-text);
    font-size: 1.65rem;
}

.pricing-group h4 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 1.15rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(61, 86, 110, 0.18);
    color: var(--text);
}

.pricing-row:last-child {
    border-bottom: 0;
}

.pricing-row span {
    flex: 1;
}

.pricing-row small {
    color: rgba(61, 86, 110, 0.78);
}

.pricing-row strong {
    color: var(--primary-text);
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-groups {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 18px;
    }
}













