        /* CSS 變數定義 */
        :root {
            --jc-purple-dark: #4a1c6b;
            --jc-purple-main: #6b2d9b;
            --jc-purple-light: #9b59b6;
            --jc-purple-soft: #d4a5e8;
            --jc-purple-pale: #f3e5f9;
            --jc-gold-dark: #b8860b;
            --jc-gold-main: #d4af37;
            --jc-gold-light: #f4d03f;
            --jc-gold-soft: #fef3c7;
            --jc-bg-light: #faf8fc;
            --jc-bg-white: #ffffff;
            --jc-text-dark: #2d1b3d;
            --jc-text-gray: #5c4a6e;
            --jc-text-light: #8b7a9e;
            --jc-border-light: rgba(74,28,107,0.12);
            --jc-line-green: #06C755;
            --jc-gradient-purple: linear-gradient(135deg, #6b2d9b 0%, #9b59b6 100%);
            --jc-gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            --jc-gradient-hero: linear-gradient(135deg, #4a1c6b 0%, #6b2d9b 50%, #2d1b3d 100%);
            --jc-shadow-md: 0 4px 12px rgba(74,28,107,0.15);
            --jc-shadow-lg: 0 10px 30px rgba(74,28,107,0.2);
            --jc-shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
            --jc-font-main: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", sans-serif;
            --jc-radius-md: 16px;
            --jc-radius-lg: 24px;
            --jc-radius-full: 50px;
        }

        /* ===== Body 覆寫（使用頁面專屬配色）===== */
        body {
            color: var(--jc-text-dark);
            background: var(--jc-bg-light);
        }

        /* 容器 */
        .container {
            max-width: var(--container-lg);
            margin: 0 auto;
            background: white;
            box-shadow: var(--jc-shadow-lg);
        }

        /* Hero 區塊 */
        .hero {
            background: var(--jc-gradient-hero);
            color: white;
            text-align: center;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 140px var(--space-12) 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(155,89,182,0.1) 0%, transparent 50%),
                              radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 100px,
                rgba(212,175,55,0.02) 100px,
                rgba(212,175,55,0.02) 200px
            );
            pointer-events: none;
            animation: shimmer 20s linear infinite;
        }

        /* Hero 裝飾元素 */
        .hero-deco {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        /* 大光球 - 右上 */
        .hero-deco-orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -80px;
            animation: float-orb 8s ease-in-out infinite;
        }

        /* 小光球 - 左下 */
        .hero-deco-orb-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float-orb 6s ease-in-out infinite reverse;
        }

        /* 中光球 - 右下 */
        .hero-deco-orb-3 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(244, 208, 63, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            bottom: 80px;
            right: 15%;
            animation: float-orb 10s ease-in-out infinite;
        }

        /* 星星裝飾 */
        .hero-deco-star {
            font-size: 1.2rem;
            opacity: 0.4;
            animation: twinkle 3s ease-in-out infinite;
        }

        .hero-deco-star-1 {
            top: 25%;
            left: 10%;
            animation-delay: 0s;
        }

        .hero-deco-star-2 {
            top: 35%;
            right: 12%;
            animation-delay: 1s;
        }

        .hero-deco-star-3 {
            bottom: 30%;
            left: 15%;
            animation-delay: 2s;
        }

        .hero-deco-star-4 {
            top: 20%;
            right: 25%;
            animation-delay: 0.5s;
            font-size: 0.9rem;
        }

        .hero-deco-star-5 {
            bottom: 25%;
            right: 8%;
            animation-delay: 1.5s;
            font-size: 1rem;
        }

        /* 線條裝飾 */
        .hero-deco-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
            transform: rotate(-30deg);
        }

        .hero-deco-line-1 {
            top: 30%;
            left: 5%;
        }

        .hero-deco-line-2 {
            bottom: 35%;
            right: 5%;
            transform: rotate(30deg);
        }

        /* 圓圈裝飾 */
        .hero-deco-circle {
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
        }

        .hero-deco-circle-1 {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 8%;
            animation: pulse-circle 4s ease-in-out infinite;
        }

        .hero-deco-circle-2 {
            width: 40px;
            height: 40px;
            bottom: 40%;
            right: 10%;
            border-color: rgba(155, 89, 182, 0.25);
            animation: pulse-circle 5s ease-in-out infinite reverse;
        }

        /* 動畫 */
        @keyframes float-orb {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        @keyframes pulse-circle {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        @keyframes shimmer {
            0% { transform: translateX(-10%) translateY(-10%); }
            100% { transform: translateX(10%) translateY(10%); }
        }

        .hero h1 {
            font-size: var(--text-5xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-8);
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-quote {
            font-size: var(--text-2xl);
            color: var(--jc-gold-light);
            font-weight: var(--font-semibold);
            margin-bottom: var(--space-8);
            position: relative;
            z-index: 1;
        }

        .hero-subtitle {
            font-size: var(--text-lg);
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            line-height: var(--leading-loose);
        }

        /* 內容區 */
        .content {
            padding: var(--space-16) var(--space-12);
        }

        /* 開場白 */
        .opening {
            background: linear-gradient(135deg, var(--jc-purple-pale) 0%, var(--jc-gold-soft) 100%);
            padding: var(--space-8) var(--space-10);
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-10);
            font-size: var(--text-lg);
            line-height: var(--leading-loose);
            border-left: 5px solid var(--jc-gold-main);
        }

        .opening p {
            margin-bottom: var(--space-4);
        }

        .opening .strong {
            font-weight: var(--font-bold);
            color: var(--jc-purple-dark);
            display: block;
            margin-top: var(--space-6);
            font-size: var(--text-lg);
        }

        /* 標題 */
        h2 {
            font-size: var(--text-4xl);
            color: var(--jc-purple-dark);
            margin-top: var(--space-12);
            margin-bottom: var(--space-6);
            padding-left: var(--space-5);
            border-left: 6px solid var(--jc-gold-main);
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background: var(--jc-gradient-gold);
            border-radius: 2px;
        }

        h3 {
            font-size: var(--text-3xl);
            color: var(--jc-purple-main);
            margin-top: var(--space-8);
            margin-bottom: var(--space-5);
        }

        p {
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-5);
            text-align: justify;
        }

        strong {
            color: var(--jc-purple-dark);
        }

        /* 重點區塊 */
        .highlight {
            background: var(--jc-gold-soft);
            padding: var(--space-6) var(--space-8);
            border-radius: var(--radius-lg);
            margin: var(--space-6) 0;
            border-left: 5px solid var(--jc-gold-main);
            font-size: var(--text-base);
        }

        .highlight p {
            margin-bottom: var(--space-3);
        }

        .highlight p:last-child {
            margin-bottom: 0;
        }

        /* 引言 */
        .quote {
            font-style: italic;
            color: var(--jc-text-gray);
            padding: var(--space-6) var(--space-8);
            background: var(--jc-purple-pale);
            border-left: 4px solid var(--jc-purple-main);
            margin: var(--space-6) 0;
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
            font-size: var(--text-lg);
            line-height: var(--leading-loose);
        }

        /* 服務卡片 */
        .service-box {
            background: white;
            padding: var(--space-8);
            margin: var(--space-5) 0;
            border-radius: var(--radius-lg);
            box-shadow: var(--jc-shadow-md);
            border: 1px solid var(--jc-border-light);
            position: relative;
            overflow: hidden;
            transition: transform var(--transition-normal) var(--ease-out), box-shadow var(--transition-normal) var(--ease-out);
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--jc-shadow-lg);
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--jc-gradient-gold);
        }

        .service-box h4 {
            color: var(--jc-purple-dark);
            font-size: var(--text-xl);
            margin-bottom: var(--space-4);
            display: flex;
            align-items: center;
            gap: var(--space-2);
        }

        .service-box h4::before {
            content: '✦';
            color: var(--jc-gold-main);
        }

        .service-box p {
            margin-bottom: var(--space-3);
            color: var(--jc-text-gray);
        }

        .price {
            color: var(--jc-purple-main);
            font-weight: var(--font-bold);
            font-size: var(--text-lg);
            background: var(--jc-purple-pale);
            padding: var(--space-1) var(--space-4);
            border-radius: var(--radius-full);
            display: inline-block;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--jc-text-light);
            font-size: var(--text-sm);
            margin-left: var(--space-2);
        }

        /* 資格區塊 */
        .credentials {
            background: var(--jc-purple-pale);
            padding: var(--space-10);
            border-radius: var(--radius-xl);
            margin: var(--space-10) 0;
        }

        .credentials h3 {
            text-align: center;
            margin-top: 0;
            margin-bottom: var(--space-6);
        }

        .credential-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-4);
        }

        .credential-item {
            background: white;
            padding: var(--space-4) var(--space-5);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            gap: var(--space-3);
            box-shadow: var(--jc-shadow-md);
        }

        .credential-item::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: var(--jc-gradient-gold);
            color: var(--jc-purple-dark);
            border-radius: var(--radius-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: var(--font-bold);
            flex-shrink: 0;
        }

        /* 聯繫區塊 */
        .contact-box {
            background: var(--jc-gradient-hero);
            color: white;
            padding: var(--space-12);
            border-radius: var(--radius-xl);
            margin: var(--space-12) 0;
            text-align: center;
        }

        .contact-box h3 {
            color: white;
            margin: 0 0 var(--space-6) 0;
            font-size: var(--text-3xl);
        }

        .contact-box p {
            font-size: var(--text-lg);
            margin: var(--space-3) 0;
            text-align: center;
        }

        .contact-box a {
            color: var(--jc-gold-light);
            text-decoration: none;
            font-weight: var(--font-semibold);
            border-bottom: 2px solid rgba(244, 208, 63, 0.5);
            transition: border-color var(--transition-normal) var(--ease-out);
        }

        .contact-box a:hover {
            border-bottom-color: var(--jc-gold-light);
        }

        .cta-buttons {
            display: flex;
            gap: var(--space-5);
            justify-content: center;
            margin-top: var(--space-8);
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            padding: var(--space-4) var(--space-8);
            border-radius: var(--radius-full);
            font-size: var(--text-base);
            font-weight: var(--font-semibold);
            text-decoration: none;
            transition: all var(--transition-normal) var(--ease-out);
        }

        .btn-primary {
            background: var(--jc-gradient-gold);
            color: var(--jc-purple-dark);
            box-shadow: var(--jc-shadow-gold);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212,175,55,0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--jc-gold-main);
        }

        /* ========== FOOTER (使用頁面配色) ========== */
        .footer {
            background: var(--jc-gradient-hero);
            color: white;
            padding: var(--space-16) 0 var(--space-10);
        }

        .footer .container {
            max-width: var(--container-2xl);
            box-shadow: none;
            background: transparent;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-12);
            margin-bottom: var(--space-12);
        }

        .footer-brand h3 {
            font-size: var(--text-xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-3);
            color: white;
        }

        .footer-brand p {
            opacity: 0.75;
            font-size: var(--text-base);
            margin-bottom: var(--space-5);
            line-height: var(--leading-relaxed);
            text-align: left;
        }

        .footer-section h4 {
            font-size: var(--text-base);
            font-weight: var(--font-semibold);
            margin-bottom: var(--space-5);
            color: var(--jc-gold-light);
        }

        .footer-section a {
            display: block;
            color: white;
            text-decoration: none;
            opacity: 0.75;
            margin-bottom: var(--space-3);
            font-size: var(--text-base);
            transition: all var(--transition-normal) var(--ease-out);
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--jc-gold-light);
        }

        .footer-bottom {
            padding-top: var(--space-8);
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: var(--text-sm);
            opacity: 0.6;
            text-align: left;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p,
            .footer-bottom p {
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-4);
                text-align: center;
            }
        }

        /* 簽名區 */
        .signature {
            text-align: center;
            margin-top: var(--space-16);
            padding: var(--space-12);
            background: var(--jc-bg-light);
            border-top: 1px solid var(--jc-border-light);
        }

        .signature .name {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--jc-purple-dark);
            margin-bottom: var(--space-4);
        }

        .signature .title {
            font-size: var(--text-sm);
            line-height: var(--leading-relaxed);
            color: var(--jc-text-gray);
        }

        .signature .thanks {
            margin-top: var(--space-8);
            font-style: italic;
            color: var(--jc-text-light);
        }

        /* FAQ 區塊 */
        .faq-section {
            background: var(--jc-purple-pale);
            padding: var(--space-16) var(--space-12);
        }

        .faq-section h2 {
            text-align: center;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }

        .faq-section h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-4);
            overflow: hidden;
            box-shadow: var(--jc-shadow-md);
            border: 2px solid transparent;
            transition: border-color var(--transition-normal) var(--ease-out);
        }

        .faq-item:hover,
        .faq-item.active {
            border-color: var(--jc-gold-main);
        }

        .faq-question {
            padding: var(--space-6) var(--space-8);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: var(--font-semibold);
            font-size: var(--text-base);
            color: var(--jc-purple-dark);
            transition: background var(--transition-normal) var(--ease-out);
        }

        .faq-question:hover {
            background: var(--jc-purple-pale);
        }

        .faq-question::after {
            content: '+';
            font-size: var(--text-2xl);
            color: var(--jc-gold-dark);
            transition: transform var(--transition-normal) var(--ease-out);
            font-weight: var(--font-normal);
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 var(--space-8) var(--space-6);
            color: var(--jc-text-gray);
            line-height: var(--leading-relaxed);
        }


        /* 響應式 */
        @media (max-width: 768px) {
            .hero {
                min-height: 50vh;
                padding: 120px var(--space-6) 80px;
            }

            .hero h1 {
                font-size: var(--text-4xl);
                margin-bottom: var(--space-6);
            }

            .hero-quote {
                font-size: var(--text-xl);
                margin-bottom: var(--space-6);
            }
            
            /* 隱藏部分裝飾元素 */
            .hero-deco-star-4,
            .hero-deco-star-5,
            .hero-deco-line,
            .hero-deco-circle {
                display: none;
            }
            
            .hero-deco-orb-1 {
                width: 250px;
                height: 250px;
                top: -80px;
                right: -60px;
            }
            
            .hero-deco-orb-2 {
                width: 150px;
                height: 150px;
            }
            
            .hero-deco-orb-3 {
                width: 100px;
                height: 100px;
                bottom: 60px;
                right: 10%;
            }
            
            .hero2 {
                padding: var(--space-24) var(--space-5) var(--space-16);
                min-height: auto;
            }
            
            .hero2 h1 { font-size: var(--text-4xl); }
            
            .hero2-image img {
                width: 250px;
                height: 250px;
            }
            
            .hero-image-deco {
                width: 290px;
                height: 290px;
            }
            
            .hero2-scroll { display: none; }
            
            .content {
                padding: var(--space-10) var(--space-6);
            }

            .opening {
                padding: var(--space-6);
            }

            h2 {
                font-size: var(--text-3xl);
            }

            .contact-box {
                padding: var(--space-8) var(--space-6);
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .credential-list {
                grid-template-columns: 1fr;
            }

            .faq-section {
                padding: var(--space-10) var(--space-6);
            }

            .floating-line {
                bottom: var(--space-5);
                right: var(--space-5);
                padding: var(--space-4) var(--space-5);
                font-size: var(--text-sm);
            }
        }

        /* ===== Hero2 區塊 ===== */
        .hero2 {
            background: var(--jc-gradient-hero);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px var(--space-12) var(--space-20);
        }

        /* 背景裝飾 */
        .hero2-bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-bg-1 {
            width: 500px;
            height: 500px;
            background: var(--jc-purple-light);
            top: -150px;
            right: -100px;
        }

        .hero-bg-2 {
            width: 400px;
            height: 400px;
            background: var(--jc-gold-main);
            bottom: -100px;
            left: -100px;
            opacity: 0.2;
        }

        .hero2-content {
            max-width: var(--container-2xl);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-16);
            position: relative;
            z-index: 1;
        }

        .hero2-text {
            flex: 1;
            color: white;
        }

        .hero2-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            color: var(--jc-gold-light);
            padding: var(--space-2) var(--space-5);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: var(--font-semibold);
            letter-spacing: var(--tracking-wide);
            margin-bottom: var(--space-6);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .hero2 h1 {
            font-size: var(--text-5xl);
            font-weight: var(--font-bold);
            line-height: var(--leading-tight);
            margin-bottom: var(--space-6);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero2-subtitle {
            font-size: var(--text-lg);
            line-height: var(--leading-loose);
            opacity: 0.9;
            margin-bottom: var(--space-10);
            max-width: 500px;
        }

        .hero2-cta {
            display: inline-flex;
            align-items: center;
            gap: var(--space-3);
            background: var(--jc-gradient-gold);
            color: var(--jc-purple-dark);
            padding: var(--space-5) var(--space-8);
            border-radius: var(--radius-full);
            font-weight: var(--font-semibold);
            font-size: var(--text-lg);
            text-decoration: none;
            box-shadow: var(--jc-shadow-gold);
            transition: all var(--transition-normal) var(--ease-out);
        }

        .hero2-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        .hero2-cta svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* 圖片區域 */
        .hero2-image {
            flex-shrink: 0;
        }

        .hero2-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero2-image img {
            width: 350px;
            height: 350px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 2;
        }

        .hero-image-deco {
            position: absolute;
            width: 390px;
            height: 390px;
            border: 3px solid var(--jc-gold-main);
            border-radius: 50%;
            opacity: 0.5;
            animation: pulse-ring 3s ease-in-out infinite;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 0.3; }
        }

        /* Hero2 響應式 */
        @media (max-width: 992px) {
            .hero2-content {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero2-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero2 h1 {
                font-size: var(--text-5xl);
            }
        }

        @media (max-width: 768px) {
            .hero2 {
                padding: var(--space-24) var(--space-6) var(--space-16);
                min-height: auto;
            }

            .hero2 h1 {
                font-size: var(--text-4xl);
            }

            .hero2-subtitle {
                font-size: var(--text-base);
            }

            .hero2-image img {
                width: 250px;
                height: 250px;
            }

            .hero-image-deco {
                width: 290px;
                height: 290px;
            }
        }