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

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: 'Sarabun', 'Prompt', sans-serif;
                line-height: 1.6;
                color: #333;
                background-color: #fff;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* Header */
            .header {
                background: linear-gradient(135deg, #8B0000 0%, #CC0000 100%);
                color: #FFD700;
                padding: 20px 0;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .header .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo h1 {
                font-size: 28px;
                font-weight: bold;
                color: #FFD700;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }

            .nav {
                display: flex;
                gap: 25px;
                flex: 1;
                justify-content: center;
            }

            .nav-link {
                color: #FFD700;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

            .nav-link:hover {
                color: #fff;
                border-bottom: 2px solid #FFD700;
            }

            .cta-button-header {
                background-color: #FFD700;
                color: #8B0000;
                border: none;
                padding: 12px 25px;
                border-radius: 5px;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .cta-button-header:hover {
                background-color: #FFC700;
                transform: scale(1.05);
            }

            /* Hero Section */
            .hero {
                background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
                color: #fff;
                padding: 100px 20px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .hero-content {
                position: relative;
                z-index: 2;
                max-width: 800px;
                margin: 0 auto;
            }

            .hero-headline {
                font-size: 48px;
                font-weight: bold;
                color: #FFD700;
                margin-bottom: 20px;
                text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
                line-height: 1.3;
            }

            .hero-subheadline {
                font-size: 18px;
                color: #fff;
                margin-bottom: 40px;
                line-height: 1.8;
            }

            .hero-buttons {
                display: flex;
                gap: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }

            /* Buttons */
            .btn {
                padding: 15px 35px;
                border: none;
                border-radius: 5px;
                font-size: 16px;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
                text-transform: uppercase;
            }

            .btn-primary {
                background-color: #FFD700;
                color: #8B0000;
            }

            .btn-primary:hover {
                background-color: #FFC700;
                transform: translateY(-2px);
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            }

            .btn-secondary {
                background-color: transparent;
                color: #FFD700;
                border: 2px solid #FFD700;
            }

            .btn-secondary:hover {
                background-color: #FFD700;
                color: #8B0000;
                transform: translateY(-2px);
            }

            /* Modal */
            .modal {
                display: none;
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }

            .modal-content {
                background: linear-gradient(135deg, #fff 0%, #FAF0E6 100%);
                margin: 5% auto;
                padding: 30px;
                border: 3px solid #FFD700;
                border-radius: 10px;
                width: 90%;
                max-width: 500px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    transform: translateY(-50px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .modal-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                border-bottom: 2px solid #FFD700;
                padding-bottom: 15px;
            }

            .modal-header h2 {
                color: #CC0000;
                margin: 0;
                font-size: 24px;
            }

            .close-btn {
                color: #CC0000;
                font-size: 28px;
                font-weight: bold;
                cursor: pointer;
                background: none;
                border: none;
                transition: all 0.3s ease;
            }

            .close-btn:hover {
                color: #8B0000;
                transform: scale(1.2);
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                display: block;
                color: #333;
                font-weight: bold;
                margin-bottom: 8px;
                font-size: 14px;
            }

            .form-group input {
                width: 100%;
                padding: 12px;
                border: 2px solid #FFD700;
                border-radius: 5px;
                font-size: 14px;
                font-family: 'Sarabun', 'Prompt', sans-serif;
                transition: all 0.3s ease;
                box-sizing: border-box;
            }

            .form-group input:focus {
                outline: none;
                border-color: #CC0000;
                box-shadow: 0 0 8px rgba(204, 0, 0, 0.3);
            }

            .form-hint {
                font-size: 12px;
                color: #666;
                margin-top: 5px;
                font-style: italic;
            }

            .modal-footer {
                display: flex;
                gap: 10px;
                justify-content: flex-end;
                margin-top: 20px;
            }

            .modal-footer .btn {
                flex: 1;
            }

            /* Result */
            #jinxResult {
                display: none;
                margin: 30px 0;
                animation: slideUp 0.5s ease;
            }

            @keyframes slideUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .jinx-result-card {
                background: linear-gradient(135deg, #fff 0%, #FAF0E6 100%);
                border-radius: 10px;
                padding: 30px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                max-width: 600px;
                margin: 0 auto;
            }

            .result-header {
                text-align: center;
                margin-bottom: 25px;
                border-bottom: 2px solid #FFD700;
                padding-bottom: 15px;
            }

            .result-header h3 {
                color: #CC0000;
                font-size: 24px;
                margin: 0;
            }

            .zodiac-info {
                background-color: #FFF8DC;
                padding: 15px;
                border-radius: 5px;
                margin-bottom: 20px;
                border-left: 4px solid #FFD700;
            }

            .zodiac-info p {
                margin: 8px 0;
                font-size: 14px;
                line-height: 1.6;
            }

            .jinx-status {
                margin: 20px 0;
                padding: 15px;
                border-radius: 5px;
                border-left: 4px solid;
            }

            .jinx-status h4 {
                margin-top: 0;
                margin-bottom: 10px;
            }

            .jinx-description,
            .jinx-advice {
                margin: 20px 0;
            }

            .jinx-description h4,
            .jinx-advice h4 {
                color: #CC0000;
                font-size: 16px;
                margin-bottom: 10px;
            }

            .jinx-description p,
            .jinx-advice p {
                color: #555;
                font-size: 14px;
                line-height: 1.8;
                margin: 0;
            }

            /* Section */
            section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 40px;
                font-weight: bold;
                color: #CC0000;
                text-align: center;
                margin-bottom: 20px;
            }

            .section-intro {
                font-size: 16px;
                color: #555;
                text-align: center;
                max-width: 800px;
                margin: 0 auto 50px;
                line-height: 1.8;
            }

            /* Zodiac Section */
            .zodiac-section {
                background-color: #FAF0E6;
            }

            .zodiac-table {
                background-color: #fff;
                border: 3px solid #FFD700;
                border-radius: 8px;
                overflow: hidden;
                margin-bottom: 50px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            .table-header {
                display: grid;
                grid-template-columns: 1fr 1.2fr 2fr 2.5fr;
                background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
                color: #FFD700;
                font-weight: bold;
                padding: 20px;
                gap: 15px;
            }

            .table-row {
                display: grid;
                grid-template-columns: 1fr 1.2fr 2fr 2.5fr;
                padding: 20px;
                border-bottom: 1px solid #FFD700;
                gap: 15px;
                align-items: start;
            }

            .table-row:last-child {
                border-bottom: none;
            }

            .table-row:nth-child(even) {
                background-color: #FFF8DC;
            }

            .table-cell {
                font-size: 14px;
                line-height: 1.6;
            }

            /* Solutions Section */
            .solutions-section {
                background: linear-gradient(135deg, #A52A2A 0%, #8B0000 100%);
                color: #fff;
            }

            .solutions-section .section-title {
                color: #FFD700;
            }

            .solutions-section .section-intro {
                color: #fff;
            }

            .solutions-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
                margin-bottom: 30px;
            }

            .solution-card {
                background-color: rgba(255, 255, 255, 0.1);
                padding: 25px;
                border-radius: 8px;
                border-left: 4px solid #FFD700;
                transition: all 0.3s ease;
            }

            .solution-card:hover {
                background-color: rgba(255, 255, 255, 0.2);
                transform: translateY(-5px);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }

            .solution-card h4 {
                color: #FFD700;
                margin-bottom: 10px;
                font-size: 18px;
            }

            .solution-card p {
                color: #fff;
                font-size: 14px;
                line-height: 1.6;
            }

            /* Products Section */
            .products-section {
                background-color: #fff;
            }

            .products-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
                margin-bottom: 30px;
            }

            .product-card {
                background-color: #fff;
                border: 2px solid #FFD700;
                border-radius: 8px;
                overflow: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            .product-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 12px 24px rgba(204, 0, 0, 0.2);
            }

            .product-image {
                width: 100%;
                height: 250px;
                overflow: hidden;
                background-color: #f5f5f5;
            }

            .product-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .product-name {
                color: #CC0000;
                font-size: 18px;
                font-weight: bold;
                padding: 15px 15px 10px;
                margin: 0;
            }

            .product-description {
                color: #555;
                font-size: 14px;
                padding: 0 15px 10px;
                line-height: 1.6;
                margin: 0;
            }

            .product-price {
                color: #FFD700;
                font-size: 20px;
                font-weight: bold;
                padding: 10px 15px;
                margin: 0;
            }

            .btn-buy {
                background-color: #CC0000;
                color: #fff;
                width: calc(100% - 30px);
                margin: 15px;
                margin-top: 10px;
            }

            .btn-buy:hover {
                background-color: #8B0000;
            }

            /* Footer */
            .footer {
                background: linear-gradient(135deg, #000 0%, #333 100%);
                color: #FFD700;
                text-align: center;
                padding: 30px 20px;
                font-size: 14px;
            }

            .footer p {
                margin: 10px 0;
            }

            strong {
                color: #CC0000;
                font-weight: bold;
            }

            @media (max-width: 768px) {
                .header .container {
                    flex-direction: column;
                    gap: 15px;
                }

                .nav {
                    flex-direction: column;
                    gap: 10px;
                    width: 100%;
                }

                .hero-headline {
                    font-size: 32px;
                }

                .section-title {
                    font-size: 28px;
                }

                .table-header,
                .table-row {
                    grid-template-columns: 1fr;
                }

                .products-grid,
                .solutions-grid {
                    grid-template-columns: 1fr;
                }

                section {
                    padding: 50px 20px;
                }
            }
            /* ============================================
               Reviews Section - Feng Shui Colors
               ============================================ */
            .reviews-section {
                background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 50%, #FFFACD 100%);
                position: relative;
                overflow: hidden;
            }

            .reviews-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(204, 0, 0, 0.05) 0%, transparent 50%);
                pointer-events: none;
                z-index: 0;
            }

            .reviews-section > .container {
                position: relative;
                z-index: 1;
            }

            .review-card {
                background-color: #fff;
                padding: 30px;
                border-radius: 12px;
                box-shadow:
                    0 8px 24px rgba(204, 0, 0, 0.12),
                    0 2px 8px rgba(255, 215, 0, 0.1);
                border-top: 5px solid #FFD700;
                border-left: 3px solid #CC0000;
                transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                position: relative;
                overflow: hidden;
            }

            .review-card::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200px;
                height: 200px;
                background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
            }

            .review-card::after {
                content: '';
                position: absolute;
                bottom: -50%;
                left: -50%;
                width: 150px;
                height: 150px;
                background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
            }

            .review-card:hover {
                transform: translateY(-15px) scale(1.02);
                box-shadow:
                    0 16px 48px rgba(204, 0, 0, 0.25),
                    0 4px 12px rgba(255, 215, 0, 0.2),
                    inset 0 1px 0 rgba(255, 215, 0, 0.3);
                border-top-color: #FF8C00;
                border-left-color: #8B0000;
            }

            .review-avatar {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #CC0000 0%, #FFD700 50%, #FFA500 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-weight: bold;
                font-size: 28px;
                margin-right: 15px;
                box-shadow:
                    0 4px 12px rgba(204, 0, 0, 0.3),
                    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.5);
                flex-shrink: 0;
            }

            .reviewer-name {
                margin: 0;
                font-weight: bold;
                color: #CC0000;
                font-size: 16px;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            }

            .reviewer-zodiac {
                margin: 5px 0 0 0;
                color: #999;
                font-size: 13px;
            }

            .reviewer-rating {
                color: #FFD700;
                font-weight: bold;
                font-size: 14px;
                text-shadow: 0 1px 2px rgba(204, 0, 0, 0.1);
            }

            .review-text {
                color: #333;
                font-size: 14px;
                line-height: 1.8;
                margin-bottom: 15px;
                font-style: italic;
                position: relative;
                z-index: 1;
            }

            .review-text strong {
                color: #CC0000;
                font-weight: 600;
                text-decoration: underline wavy #FFD700;
            }

            .review-products {
                color: #666;
                font-size: 13px;
                margin: 0;
                padding: 12px;
                background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%);
                border-radius: 6px;
                border-left: 3px solid #FFD700;
                position: relative;
                z-index: 1;
            }

            .review-products::before {
                content: '💬 ';
                font-weight: bold;
                color: #CC0000;
            }

            .reviews-cta-box {
                background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #FF6B6B 100%);
                color: #fff;
                padding: 40px;
                border-radius: 12px;
                margin-top: 50px;
                text-align: center;
                box-shadow:
                    0 12px 40px rgba(204, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
                border: 2px solid #FFD700;
                position: relative;
                overflow: hidden;
            }

            .reviews-cta-box::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
            }

            .reviews-cta-box::after {
                content: '';
                position: absolute;
                bottom: -50%;
                left: -50%;
                width: 250px;
                height: 250px;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
            }

            .reviews-cta-title {
                font-size: 24px;
                margin-bottom: 15px;
                color: #FFD700;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
                position: relative;
                z-index: 1;
            }

            .reviews-cta-text {
                font-size: 16px;
                line-height: 1.8;
                margin-bottom: 20px;
                position: relative;
                z-index: 1;
            }

            .reviews-cta-button {
                background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
                color: #8B0000;
                border: none;
                padding: 14px 32px;
                font-size: 16px;
                font-weight: bold;
                border-radius: 8px;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow:
                    0 6px 20px rgba(255, 215, 0, 0.4),
                    0 2px 6px rgba(0, 0, 0, 0.2);
                position: relative;
                z-index: 1;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .reviews-cta-button:hover {
                background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
                color: #fff;
                transform: translateY(-3px);
                box-shadow:
                    0 10px 30px rgba(255, 215, 0, 0.5),
                    0 4px 10px rgba(0, 0, 0, 0.3);
            }

            .reviews-cta-button:active {
                transform: translateY(-1px);
                box-shadow:
                    0 4px 12px rgba(255, 215, 0, 0.3),
                    0 2px 4px rgba(0, 0, 0, 0.2);
            }

            @keyframes slideInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .review-card {
                animation: slideInUp 0.6s ease-out forwards;
            }

            .review-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .review-card:nth-child(2) {
                animation-delay: 0.2s;
            }

            .review-card:nth-child(3) {
                animation-delay: 0.3s;
            }

            @media (max-width: 768px) {
                .review-card {
                    padding: 20px;
                }

                .review-avatar {
                    width: 50px;
                    height: 50px;
                    font-size: 22px;
                }

                .reviews-cta-box {
                    padding: 30px;
                }

                .reviews-cta-title {
                    font-size: 20px;
                }
            }
        

/* ===== Product Detail Styles ===== */

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

        body {
            font-family: 'Sarabun', 'Prompt', sans-serif;
            background: linear-gradient(135deg, #FFFACD 0%, #FFE4B5 100%);
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #8B0000 0%, #CC0000 100%);
            color: #FFD700;
            padding: 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-button {
            color: #FFD700;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .back-button:hover {
            color: #fff;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Page 1: Gallery */
        .page-1 {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 24px rgba(204, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .page-1 h2 {
            color: #CC0000;
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
        }

        /* Gallery Styles */
        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-main {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: linear-gradient(135deg, #FFE4B5 0%, #FFFACD 100%);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(204, 0, 0, 0.1);
            border: 3px solid #FFD700;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

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

        .gallery-thumbnail {
            cursor: pointer;
            border: 3px solid transparent;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            aspect-ratio: 1 / 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .gallery-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumbnail.active {
            border-color: #FFD700;
            box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
            transform: scale(1.02);
        }

        .gallery-thumbnail:hover {
            transform: scale(1.08);
        }

        /* Page 2: Details */
        .page-2 {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 24px rgba(204, 0, 0, 0.1);
        }

        .page-2-header {
            margin-bottom: 30px;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 20px;
        }

        .page-2-header h1 {
            color: #CC0000;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .page-2-header .rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .page-2-header .rating-stars {
            color: #FFD700;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .page-2-header .rating-text {
            color: #666;
            font-size: 14px;
        }

        .price-section {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
        }

        .price-label {
            color: #FFD700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .price-amount {
            color: #FFD700;
            font-size: 52px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .price-note {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
        }

        .product-description {
            color: #333;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF5CC 100%);
            border-left: 5px solid #FFD700;
            border-radius: 8px;
        }

        .features-section {
            margin-bottom: 30px;
        }

        .features-section h3 {
            color: #CC0000;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            color: #333;
            font-size: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li::before {
            content: '✓';
            color: #00AA00;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            margin: 30px 0;
        }

        /* Payment & Contact Section */
        .payment-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .line-qr-box {
            background: linear-gradient(135deg, #00B900 0%, #008C00 100%);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            color: #fff;
            box-shadow: 0 8px 24px rgba(0, 137, 0, 0.2);
        }

        .line-qr-box h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .qr-placeholder {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .line-id-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
            border: 2px solid #fff;
            display: inline-block;
        }

        .payment-methods {
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF5CC 100%);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #FFD700;
        }

        .payment-methods h3 {
            color: #CC0000;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .payment-item {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-left: 4px solid #FFD700;
            font-size: 13px;
            line-height: 1.6;
        }

        .payment-item:last-child {
            margin-bottom: 0;
        }

        .payment-item strong {
            color: #CC0000;
            display: block;
            margin-bottom: 5px;
        }

        .payment-item p {
            color: #333;
            margin: 3px 0;
        }

        .order-steps {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #FFD700;
            margin-bottom: 30px;
        }

        .order-steps h3 {
            color: #CC0000;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.7;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .step-item:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            transform: translateX(5px);
        }

        .step-item:last-child {
            margin-bottom: 0;
        }

        .step-number {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }

        .step-content strong {
            color: #CC0000;
            display: block;
            margin-bottom: 3px;
        }

        .step-content p {
            color: #333;
        }

        .guarantee-box {
            background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
            border: 2px solid #4CAF50;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .guarantee-box h3 {
            color: #2E7D32;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .guarantee-box p {
            color: #333;
            font-size: 13px;
            line-height: 1.8;
            margin: 8px 0;
        }

        .guarantee-box p::before {
            content: '✓ ';
            color: #4CAF50;
            font-weight: bold;
            margin-right: 6px;
        }

        .contact-box {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
        }

        .contact-box h3 {
            color: #FFD700;
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-info {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin: 8px 0;
        }

        .contact-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .contact-btn {
            background: #FFD700;
            color: #8B0000;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 13px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        .sticky-cta {
            position: sticky;
            bottom: 20px;
            margin-top: 30px;
        }

        .sticky-cta-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #8B0000;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
        }

        .sticky-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
        }

        @media (max-width: 768px) {
            .page-1, .page-2 {
                padding: 25px;
            }

            .payment-contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-2-header h1 {
                font-size: 24px;
            }

            .price-amount {
                font-size: 40px;
            }

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

            .contact-btn {
                width: 100%;
            }
        }
    
        /* Add-on Section */
        .addon-section {
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF5CC 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #FFD700;
            margin-bottom: 30px;
        }

        .addon-section h3 {
            color: #CC0000;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .addon-item {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .addon-item:hover {
            border-color: #FFD700;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        }

        .addon-item input[type="checkbox"] {
            display: none;
        }

        .addon-item input[type="checkbox"]:checked + label {
            color: #CC0000;
        }

        .addon-item input[type="checkbox"]:checked ~ * {
            border-color: #FFD700;
        }

        .addon-item label {
            display: block;
            cursor: pointer;
        }

        .addon-name {
            color: #333;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .addon-price {
            color: #CC0000;
            font-size: 14px;
            font-weight: bold;
        }

        .addon-item input[type="checkbox"]:checked + label .addon-name {
            color: #CC0000;
        }

        .addon-item input[type="checkbox"]:checked + label .addon-price {
            color: #FFD700;
        }

        .addon-item input[type="checkbox"]:checked {
            border-color: #FFD700 !important;
        }

        

/* ===== Temple Worship Styles ===== */

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FFFACD 0%, #FFE4B5 100%);
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFD700;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 30px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        nav a:hover {
            color: #FFD700;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.95;
        }

        .hero-cta {
            display: inline-block;
            background: #FFD700;
            color: #8B0000;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
        }

        /* Temple Info Section */
        .temple-info {
            background: #fff;
            padding: 60px 20px;
            margin: 40px 0;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(204, 0, 0, 0.1);
        }

        .temple-info h2 {
            color: #CC0000;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        .temple-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

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

        .temple-image {
            background: linear-gradient(135deg, #FFE4B5 0%, #FFFACD 100%);
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #FFD700;
        }

        .temple-image-emoji {
            font-size: 120px;
        }

        .temple-details h3 {
            color: #CC0000;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .temple-details p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .temple-details ul {
            list-style: none;
            margin: 20px 0;
        }

        .temple-details li {
            color: #333;
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .temple-details li::before {
            content: '✓';
            color: #00AA00;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, #FFFACD 0%, #FFE4B5 100%);
            padding: 60px 20px;
            margin: 40px 0;
            border-radius: 16px;
        }

        .services h2 {
            color: #CC0000;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(204, 0, 0, 0.1);
            border-top: 5px solid #FFD700;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(204, 0, 0, 0.15);
        }

        .service-card h3 {
            color: #CC0000;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .service-price {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #8B0000;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            text-align: center;
            font-size: 16px;
        }

        /* Worship Process Section */
        .worship-process {
            background: #fff;
            padding: 60px 20px;
            margin: 40px 0;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(204, 0, 0, 0.1);
        }

        .worship-process h2 {
            color: #CC0000;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: #FFD700;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 8px 16px rgba(204, 0, 0, 0.2);
        }

        .process-step h3 {
            color: #CC0000;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .process-step p {
            color: #333;
            font-size: 13px;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, #FFFACD 0%, #FFE4B5 100%);
            padding: 60px 20px;
            margin: 40px 0;
            border-radius: 16px;
        }

        .testimonials h2 {
            color: #CC0000;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(204, 0, 0, 0.1);
            border-left: 4px solid #FFD700;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .testimonial-name {
            color: #CC0000;
            font-weight: bold;
            font-size: 14px;
        }

        .testimonial-rating {
            color: #FFD700;
            font-size: 14px;
        }

        .testimonial-text {
            color: #333;
            font-size: 13px;
            line-height: 1.6;
            font-style: italic;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
            color: #fff;
            padding: 60px 20px;
            margin: 40px 0;
            border-radius: 16px;
            text-align: center;
        }

        .contact h2 {
            color: #FFD700;
            font-size: 36px;
            margin-bottom: 30px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #FFD700;
        }

        .contact-item h3 {
            color: #FFD700;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .contact-item p {
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            background: #FFD700;
            color: #8B0000;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            margin-top: 40px;
        }

        footer p {
            font-size: 13px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            nav {
                display: none;
            }

            .temple-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }
        }
    