      :root {
            --primary-purple: #4A148C;
            --accent-yellow: #FFCA28;
            --accent-pink: #EC407A;
            --accent-blue: #29B6F6;
            --bg-light: #FAFAFA;
            --text-dark: #333;
            --text-gray: #666;
        }

        html {
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
        }

        body {
            font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        /* === 導覽列 Navbar === */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            box-sizing: border-box;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }
    
        .nav-logo-placeholder {
            height: 80px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
          @media (max-width: 900px) {
            .navbar {
                padding: 0 20px;
                height: 70px;
                }
            }
          @media (max-width: 600px) {
            /**.hero {
                padding-top: 70px !important;
            }**/
            .nav-logo-placeholder {
                height: 50px;
            }
            .nav-logo-placeholder img {
                height: 50px;
            }
        }
        /* --- 背景漂浮幾何圖形特效 --- */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.12;
            animation: float 8s infinite ease-in-out alternate;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-pink);
            top: 10%;
            left: -5%;
            border-radius: 50%;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-yellow);
            bottom: 10%;
            right: -10%;
            animation-delay: 2s;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--accent-blue);
            top: 50%;
            left: 60%;
            animation-delay: 4s;
            border-radius: 50%;
        }

        .shape-4 {
            width: 150px;
            height: 150px;
            background: var(--primary-purple);
            top: 70%;
            left: 10%;
            animation-delay: 1s;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            100% {
                transform: translateY(-40px) rotate(20deg);
            }
        }

        /* --- Hero --- */
        .hero {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column; /* 讓圖片與按鈕垂直排列 */
            align-items: center;
            /**background-color: #412770;
            padding-top: 100px;**/
            padding-bottom: 50px; /* 留白空間給按鈕 */
        }

        .hero picture {
            width: 100%;
            display: block;
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
        }
        /* --- 新增：報名按鈕樣式 --- */
        .btn-signup {
            margin-top: 35px;
            padding: 16px 60px;
            background-color: var(--accent-yellow);
            color: var(--primary-purple);
            font-size: 1.5rem;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(255, 202, 40, 0.4);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            letter-spacing: 2px;
            line-height: 1.2rem;
        }

        .btn-signup:hover {
            transform: scale(1.08);
            background-color: #ffd54f;
            box-shadow: 0 15px 30px rgba(255, 202, 40, 0.6);
        }
        /* --- 共用區塊設定 --- */
        section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        #zones {
            padding: 10px 20px 80px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-purple);
            margin: 0px auto;
            position: relative;
        }

            .section-title::after {
                content: '';
                display: block;
                width: 80px;
                height: 4px;
                background: var(--accent-pink);
                margin: 5px auto 15px;
                border-radius: 2px;
            }

        /* --- 滾動動畫 --- */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

            .scroll-reveal.active {
                opacity: 1;
                transform: translateY(0);
            }

        /* --- 六大亮點 --- */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .highlight-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 220px;
            box-sizing: border-box;
        }

            .highlight-item:hover {
                transform: translateY(-6px);
                box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
            }

        .highlight-icon {
            font-size: 3.4rem;
            margin-bottom: 22px;
        }

        .highlight-item h3 {
            color: var(--primary-purple);
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .highlight-item p {
            color: var(--text-gray);
            margin: 0;
        }

        /* --- 新增大亮點形象區塊 --- */
        .feature-section {
            max-width: 1200px;
            margin: 0 auto 30px;
            padding: 0;
            overflow: hidden;
            background: #f1f1f1;
        }

        .feature-wrap {
            display: grid;
            grid-template-columns: 42% 58%;
            min-height: 520px;
            align-items: stretch;
        }

            .feature-wrap.reverse {
                grid-template-columns: 58% 42%;
            }

        .feature-image {
            position: relative;
            min-height: 520px;
            background-size: cover;
            background-position: center;
        }

            .feature-image.left-overlay::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 38%;
                height: 100%;
                background: linear-gradient(to right, rgba(241, 241, 241, 0), rgba(241, 241, 241, 1));
            }

            .feature-image.right-overlay::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 38%;
                height: 100%;
                background: linear-gradient(to left, rgba(241, 241, 241, 0), rgba(241, 241, 241, 1));
            }

            .feature-image.right-overlay {
                /* 原本的設定保留，加入下面這行讓切換背景時有 0.3 秒的淡入淡出感 */
                transition: background-image 0.3s ease-in-out;
                background-size: cover;
                background-position: center;
            }

        .feature-content {
            padding: 36px 36px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-title {
            font-size: 2.2rem;
            color: #111;
            margin: 0 0 12px;
            line-height: 1.3;
        }

        .feature-text {
            font-size: 1.08rem;
            color: #111;
            margin-bottom: 24px;
        }

        .market-btn-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .market-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 82px;
            background: #e7e7e7;
            color: #222;
            border-radius: 18px;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

            .market-btn:hover {
                background: #dddddd;
                transform: translateY(-2px);
            }

        .stage-list {
            display: flex;
            flex-direction: column;
            gap: 22px;
            margin-top: 8px;
        }

        .stage-item {
            display: grid;
            grid-template-columns: 88px 1fr;
            gap: 18px;
            align-items: start;
        }

        .stage-thumb {
            width: 88px;
            min-height: 88px;
            background: #ead8cb;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            font-size: 0.95rem;
            line-height: 1.4;
            padding: 8px;
            box-sizing: border-box;
        }
        /* --- 縮圖容器設定 --- */
        .stage-list .stage-thumb {
            cursor: pointer;
            transition: opacity 0.2s, transform 0.2s;
            overflow: hidden; /* 關鍵：隱藏任何超出這個 div 的內容 */
            border-radius: 10px; /* 加上圓角讓視覺更柔和 (可依需求調整) */
            
            /* 關鍵：設定固定的比例，例如 16:9、4:3 或 1:1 */
            aspect-ratio: 16 / 9; 
            
            /* 如果沒有用 grid 或 flex 排版，可以給一個基礎寬度 */
            /* width: 100%; */ 
        }

        .stage-list .stage-thumb:hover {
            opacity: 0.8;
            transform: scale(0.98); /* 加上微縮效果讓互動感更好 */
        }

        /* --- 縮圖圖片設定 --- */
        .stage-list .stage-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 關鍵：讓圖片自動裁切填滿容器，絕對不會變形或拉伸 */
            display: block; /* 消除圖片下方的預設空白間隙 */
        }
        .stage-name {
            margin: 0 0 6px;
            font-size: 1.9rem;
            line-height: 1.25;
            color: #111;
        }

        .stage-item p {
            margin: 0;
            color: #111;
            line-height: 1.5;
        }

        .stage-time {
            margin-top: 6px !important;
            font-weight: bold;
        }

        /* --- 主題展區介紹 --- */
        .zones-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .zone-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            border-left: 8px solid var(--accent-blue);
        }

            .zone-card.c-pink {
                border-left-color: var(--accent-pink);
            }

            .zone-card.c-yellow {
                border-left-color: var(--accent-yellow);
            }

        .zone-title {
            font-size: 1.8rem;
            color: var(--primary-purple);
            margin-top: 0;
            margin-bottom: 15px;
        }

        .zone-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .sub-event-box {
            background: #F8F9FA;
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
            border: 1px solid #eee;
        }

            .sub-event-box h4 {
                margin-top: 0;
                color: var(--primary-purple);
                font-size: 1.2rem;
                border-bottom: 2px dashed #ccc;
                padding-bottom: 10px;
            }

            .sub-event-box ul {
                padding-left: 20px;
                margin-bottom: 0;
            }

            .sub-event-box li {
                margin-bottom: 8px;
            }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .food-col {
            background: #FFF3E0;
            padding: 20px;
            border-radius: 15px;
        }

            .food-col h4 {
                margin-top: 0;
                color: #E65100;
                font-size: 1.2rem;
            }

        .food-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .food-tag {
            background: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #555;
            border: 1px solid #FFCC80;
        }

        /* --- 親子草皮專區 --- */
        .kids-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
        }

        .kids-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

            .kids-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 6px;
                background: var(--accent-yellow);
            }

            .kids-card h3 {
                color: var(--primary-purple);
                font-size: 1.5rem;
                margin-top: 0;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .kids-card p {
                color: #555;
                text-align: justify;
            }

        /* 親子卡片圖片容器 */
        .kids-card .kids-photo {
            width: calc(100% + 70px); /* 讓圖片稍微超出 padding 範圍，填滿到邊緣 */
            margin: -35px -35px 25px -35px; /* 抵消外層 kids-card 的 padding (35px) */
            aspect-ratio: 16 / 9; /* 強制設定比例 */
            overflow: hidden;
        }

        .kids-card .kids-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 關鍵：自動充滿不變形 */
            transition: transform 0.5s ease;
        }

        /* 滑鼠移上去時圖片微放大效果 */
        .kids-card:hover .kids-photo img {
            transform: scale(1.1);
        }
        .kids-info {
            background: #f0f8ff;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-size: 0.95rem;
        }

            .kids-info strong {
                color: var(--accent-blue);
            }

        /* --- 闖關集章之旅 --- */
        .stamp-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stamp-step {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border-bottom: 4px solid var(--accent-blue);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent-yellow);
            color: var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 15px;
            box-shadow: 0 4px 10px rgba(255, 202, 40, 0.4);
        }

        /* --- 活動時刻表 --- */
        .schedule-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .schedule-container {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }

            .schedule-table th,
            .schedule-table td {
                padding: 12px 15px;
                border-bottom: 1px solid #eee;
                text-align: center;
            }

            .schedule-table th {
                background: var(--primary-purple);
                color: white;
                font-size: 1.1rem;
            }

        .lawn-table th {
            background: #4CAF50;
        }

        .schedule-table tr:last-child td {
            border-bottom: none;
        }

        .schedule-table tr:nth-child(even) {
            background-color: #fcfcfc;
        }

        .time-col {
            color: var(--accent-pink);
            font-weight: bold;
            white-space: nowrap;
            width: 130px;
        }

        .lawn-table .time-col {
            color: #2E7D32;
        }

        /* --- 資訊區 --- */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .info-card {
            background: var(--primary-purple);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
        }

            .info-card h3 {
                margin-top: 0;
                color: var(--accent-yellow);
                font-size: 1.5rem;
            }

            .info-card p {
                margin-bottom: 10px;
                opacity: 0.9;
            }

        footer {
            background: #222;
            color: #ffffff;
            text-align: center;
            padding: 30px;
        }
        footer a {color: wheat;}
        /* --- RWD --- */
        @media (max-width: 1024px) {
            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-wrap,
            .feature-wrap.reverse {
                grid-template-columns: 1fr;
            }

            .feature-image {
                min-height: 320px;
            }

                .feature-image.left-overlay::after,
                .feature-image.right-overlay::after {
                    display: none;
                }
        }

        @media (max-width: 900px) {
            .stamp-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .feature-content {
                padding: 28px 20px 35px;
            }

            .feature-title {
                font-size: 1.8rem;
            }

            .market-btn {
                font-size: 1.08rem;
                min-height: 70px;
            }

            .stage-item {
                grid-template-columns: 72px 1fr;
                gap: 14px;
            }

            .stage-thumb {
                width: 72px;
                min-height: 72px;
                font-size: 0.88rem;
                border-radius: 14px;
            }

            .stage-name {
                font-size: 1.35rem;
            }

            .kids-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .stamp-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        .wrap {
            max-width: 1480px;
            margin: 0 auto;
            padding: 28px 20px 40px;
        }
    
        .header {
            margin-bottom: 20px;
        }
    
        .eyebrow {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(215, 38, 61, .08);
            color: var(--brand-dark);
            font-size: 14px;
            letter-spacing: .08em;
        }
    
        h1 {
            margin: 14px 0 10px;
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.15;
        }
    
        .sub {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }
    
        .layout {
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
            gap: 22px;
            align-items: start;
            margin-top: 22px;
        }
    
        .map-card,
        .map-info {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 10px;
        }
    
        .map-card {
            padding: 18px;
        }
    
        .map-shell {
            position: relative;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
            background: #eee;
        }
    
        .map-img {
            display: block;
            width: 100%;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
        }
    
        .map-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }
    
        .zone-hit {
            fill: rgba(215, 38, 61, .12);
            stroke: rgb(49 255 176);
            stroke-width: 6;
            cursor: pointer;
            transition: fill .2s ease, stroke .2s ease, transform .2s ease, filter .2s ease;
            vector-effect: non-scaling-stroke;
        }
    
        .zone-hit:hover,
        .zone-hit:focus {
            fill: rgba(247, 183, 51, .26);
            stroke: rgba(247, 183, 51, 1);
            outline: none;
            filter: drop-shadow(0 0 14px rgba(247, 183, 51, .45));
        }
    
        .zone-hit.active {
            fill: rgba(215, 38, 61, .22);
            stroke:rgb(255 9 0);
            filter: drop-shadow(0 0 18px rgba(215, 38, 61, .35));
        }
    
        .hint {
            margin-top: 14px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
        }
    
        .hint span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
    
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }
    
        .dot.default {
            background: rgb(49 255 176);
        }
    
        .dot.hover {
            background: rgba(247, 183, 51, 1);
        }
    
        .dot.active {
            background: rgb(255 9 0);
        }
    
        .info-card {
            padding: 26px 24px;
            position: sticky;
            top: 20px;
        }
    
        .info-zone {
            display: inline-block;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(215, 38, 61, .08);
            color: var(--brand-dark);
            font-size: 14px;
            margin-bottom: 12px;
        }
    
        .info-title {
            margin: 0 0 10px;
            font-size: clamp(24px, 2.2vw, 34px);
            line-height: 1.2;
        }
    
        .info-desc {
            margin: 0 0 18px;
            color: #444;
            line-height: 1.85;
            font-size: 16px;
        }
    
        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }
    
        .chip {
            padding: 8px 12px;
            border-radius: 999px;
            background: #fff6e0;
            border: 1px solid #f0d48d;
            color: #7a4d00;
            font-size: 14px;
            line-height: 1.2;
        }
    
        .info-extra {
            padding: 14px 16px;
            border-radius: 16px;
            background: #f8f3f0;
            color: #5f4a3d;
            line-height: 1.8;
            font-size: 15px;
            border-left: 5px solid #ebc28d;
        }
    
        .zone-list {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
    
        /* --- 這是給 SVG 文字的專屬樣式 --- */
        .zone-label {
            fill: #ffffff;
            /* 文字顏色：白色 */
            font-size: 2.6rem;
            /* 文字大小 */
            font-weight: bold;
            letter-spacing: 2px;
            text-anchor: middle;
            /* 水平置中 */
            dominant-baseline: central;
            /* 垂直置中 */
            pointer-events: none;
            /* ❗非常重要：讓滑鼠穿透文字，才不會擋住底下紅框的 hover 與 click 事件 */
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
            /* 加上黑陰影，避免背景太白看不到字 */
            transition: all 0.2s ease;
        }
    
        /* 當 hover 到紅框時，文字也可以跟著做變化 (選用) */
        .zone-hit:hover+.zone-label {
            fill: var(--gold);
            /* 變成金色 */
            transform: scale(1.05);
        }
    
        /* 當點擊變成 active 時的文字變化 (選用) */
        .zone-hit.active+.zone-label {
            fill: #ffffff;
        }
    
        .zone-btn {
            appearance: none;
            border: 1px solid #e7ddd3;
            background: #fff;
            border-radius: 14px;
            padding: 12px 14px;
            text-align: left;
            font-size: 14px;
            cursor: pointer;
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }
    
        .zone-btn:hover,
        .zone-btn:focus {
            border-color: rgba(215, 38, 61, .45);
            box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
            transform: translateY(-1px);
            outline: none;
        }
    
        .zone-btn.active {
            border-color: rgba(215, 38, 61, .7);
            background: rgba(215, 38, 61, .05);
            color: var(--brand-dark);
        }
    
        @media (max-width: 980px) {
            .layout {
                grid-template-columns: 1fr;
            }
    
            .info-card {
                position: static;
            }
        }
    
        @media (max-width: 640px) {
            .wrap {
                padding: 18px 12px 28px;
            }
    
            .map-card {
                padding: 10px;
            }
    
            .info-card {
                padding: 20px 16px;
            }
    
            .zone-list {
                grid-template-columns: 1fr;
            }
    
            .hint {
                font-size: 13px;
            }
        }
        .dual-feature-section {
            padding: 40px 5% 90px;
        }
    
        .dual-feature-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }
    
        .dual-feature-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(44, 27, 88, 0.10);
            border: 1px solid rgba(125, 96, 191, 0.10);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
    
        .dual-feature-photo {
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #f6f1ff;
        }
    
        .dual-feature-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    
        .dual-feature-body {
            padding: 28px 28px 30px;
        }
    
        .dual-feature-title {
            margin: 0 0 16px;
            font-size: 2rem;
            line-height: 1.35;
            color: var(--primary-purple, #5b2a86);
        }
    
        .dual-feature-list {
            margin: 0;
            padding-left: 1.35rem;
            color: #4e4b66;
            line-height: 1.9;
            font-size: 1.05rem;
        }
    
        .dual-feature-list li+li {
            margin-top: 10px;
        }
    
        .dual-feature-body p {
            margin: 0;
            color: #4e4b66;
            line-height: 1.95;
            font-size: 1.05rem;
        }
    
        @media (max-width: 900px) {
            .dual-feature-section {
                padding: 24px 5% 72px;
            }
    
            .dual-feature-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
    
            .dual-feature-title {
                font-size: 1.55rem;
            }
    
            .dual-feature-body {
                padding: 22px 20px 24px;
            }
        }
    
