
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang TC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Meta Info */
        .meta-info {
            text-align: center;
            padding: 30px 0;
            background: white;
            border-bottom: 1px solid #eee;
        }

        .meta-info p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Table of Contents */
        .toc {
            background: white;
            padding: 40px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .toc h2 {
            color: #ff6b35;
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .toc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        .toc-item {
            display: block;
            padding: 15px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border-left: 4px solid #ff6b35;
        }

        .toc-item:hover {
            background: #ff6b35;
            color: white;
            transform: translateX(5px);
        }

        /* Content Sections */
        .content-section {
            background: white;
            margin: 30px 0;
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .section-title {
            color: #ff6b35;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            margin: 15px auto;
            border-radius: 2px;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #444;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .image-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .image-item:hover {
            transform: translateY(-5px);
        }

        .image-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        /* Info Cards */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .info-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .info-card h3 {
            color: #ff6b35;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .info-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .benefit-category {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 4px solid #ff6b35;
        }

        .benefit-category h3 {
            color: #ff6b35;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .benefit-list {
            list-style: none;
        }

        .benefit-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
        }

        .benefit-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .step-title {
            color: #ff6b35;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .step-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Alert Box */
        .alert-box {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            border: 1px solid #ffc107;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ffc107;
        }

        .alert-box h4 {
            color: #856404;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .alert-box p {
            color: #856404;
            margin-bottom: 10px;
        }

        /* Preparation Lists */
        .preparation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .preparation-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 3px solid #ff6b35;
        }

        .preparation-card h4 {
            color: #ff6b35;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .preparation-card ul {
            list-style: none;
        }

        .preparation-card li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
            color: #555;
        }

        .preparation-card li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        /* Pricing Tables */
        .pricing-section {
            margin: 50px 0;
        }

        .pricing-tables {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .pricing-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .pricing-header {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .pricing-body {
            padding: 0;
        }

        .pricing-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid #eee;
        }

        .pricing-row:first-child {
            background: #f8f9fa;
            font-weight: 600;
        }

        .pricing-cell {
            padding: 15px;
            text-align: center;
            border-right: 1px solid #eee;
        }

        .pricing-cell:last-child {
            border-right: none;
        }

        .pricing-note {
            padding: 20px;
            background: #f8f9fa;
            font-size: 0.9rem;
            color: #666;
        }

        /* Premium Package */
        .premium-package {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .premium-package::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: sparkle 10s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .premium-content {
            position: relative;
            z-index: 2;
        }

        .premium-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .premium-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .premium-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .premium-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .premium-feature {
            text-align: center;
        }

        .premium-feature h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .premium-feature ul {
            list-style: none;
            font-size: 0.95rem;
        }

        .premium-feature li {
            padding: 3px 0;
        }

        .premium-pricing {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 30px 0;
        }

        .premium-cta {
            display: inline-block;
            background: white;
            color: #ff6b35;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .premium-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Aftercare Guide */
        .aftercare-timeline {
            margin: 40px 0;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-marker {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 30px;
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .timeline-title {
            color: #ff6b35;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .timeline-description {
            color: #666;
            line-height: 1.6;
        }

        .timeline-description ul {
            margin-top: 15px;
            padding-left: 20px;
        }

        .timeline-description li {
            margin-bottom: 8px;
            color: #555;
        }

        /* Emergency Alert */
        .emergency-alert {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .emergency-alert h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .emergency-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .emergency-item {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 10px;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            margin: 50px 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #ff6b35;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background: #e55a2b;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 25px;
            background: #f8f9fa;
            display: none;
            color: #555;
            line-height: 1.6;
        }

        .faq-answer.show {
            display: block;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 20px;
            margin: 50px 0;
        }

        .contact-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
        }

        .whatsapp-btn:hover {
            background: #20ba5a;
            transform: translateY(-3px);
        }

        .phone-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .phone-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
        }

        .service-hours {
            margin-top: 30px;
            font-size: 1rem;
            opacity: 0.8;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .content-section {
                padding: 30px 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .image-gallery {
                grid-template-columns: 1fr;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .pricing-tables {
                grid-template-columns: 1fr;
            }

            .premium-features {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
            }

            .timeline-marker {
                margin: 0 auto 20px auto;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 80%;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection Color */
        ::selection {
            background: #ff6b35;
            color: white;
        }
    