
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, 'PingFang HK', 'Microsoft JhengHei', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: #ffffff;
            color: #1f2937;
            line-height: 1.6;
        }

        .hero {
            background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
            padding: 100px 20px 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 60px;
            font-weight: 800;
            color: #1f2937;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 24px;
            color: #6b7280;
            font-weight: 400;
            margin-bottom: 32px;
        }

        .hero-image {
            max-width: 800px;
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 40px auto 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin: 32px 0;
            flex-wrap: wrap;
        }

        .hero-info {
            margin-top: 32px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            font-size: 16px;
            color: #4b5563;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 32px;
            letter-spacing: -0.5px;
        }

        .section-intro {
            font-size: 20px;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .situations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .situation-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.2s ease;
        }

        .situation-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            border-color: #3b82f6;
        }

        .situation-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .situation-title {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .situation-desc {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
        }

        .process-steps {
            background: #f9fafb;
            border-radius: 16px;
            padding: 40px;
            margin: 40px 0;
        }

        .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            align-items: flex-start;
        }

        .step-item:last-child {
            margin-bottom: 0;
        }

        .step-number {
            min-width: 48px;
            height: 48px;
            background: #3b82f6;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
        }

        .step-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
        }

        .info-box {
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
        }

        .info-box-title {
            font-size: 24px;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-box-content {
            font-size: 16px;
            color: #1e40af;
            line-height: 1.8;
        }

        .info-box-content ul {
            margin-top: 16px;
            padding-left: 20px;
        }

        .info-box-content li {
            margin-bottom: 8px;
        }

        .price-card {
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            border-radius: 20px;
            padding: 40px;
            color: white;
            text-align: center;
            margin: 40px auto;
            max-width: 600px;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            opacity: 0.95;
        }

        .price-card .price-note {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .price-card ul {
            text-align: left;
            list-style: none;
            padding: 0;
            margin: 24px 0;
        }

        .price-card ul li {
            padding: 8px 0;
            font-size: 16px;
            opacity: 0.95;
        }

        .price-card ul li:before {
            content: "✓ ";
            font-weight: bold;
            margin-right: 8px;
        }

        .faq-section {
            margin: 80px 0;
        }

        .faq-title {
            font-size: 42px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 40px;
            text-align: center;
        }

        .faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 20px;
            transition: all 0.2s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: #3b82f6;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .faq-answer {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.8;
        }

        .price-badge {
            display: inline-block;
            background: #3b82f6;
            color: white;
            padding: 8px 20px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 20px;
            margin: 16px 0;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .cta-section {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            margin: 60px 0;
        }

        .cta-section h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary,
        .btn-white,
        .btn-green {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #3b82f6;
            color: white;
        }

        .btn-primary:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
        }

        .btn-white {
            background: white;
            color: #3b82f6;
        }

        .btn-white:hover {
            background: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .btn-green {
            background: #10b981;
            color: white;
        }

        .btn-green:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
        }

        .image-section {
            margin: 60px 0;
            text-align: center;
        }

        .image-section img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .image-section img:hover {
            transform: scale(1.02);
        }

        .image-caption {
            margin-top: 16px;
            font-size: 16px;
            color: #6b7280;
            font-style: italic;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px 50px;
            }

            .hero h1 {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .hero-subtitle {
                font-size: 18px;
                margin-bottom: 24px;
            }

            .hero-info {
                font-size: 14px;
                padding: 16px;
                margin-top: 24px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                margin: 24px 0;
            }

            .content {
                padding: 40px 20px;
            }

            .section {
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 24px;
            }

            .section-intro {
                font-size: 16px;
                margin-bottom: 32px;
            }

            .situations-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .situation-card {
                padding: 24px;
            }

            .process-steps {
                padding: 24px;
            }

            .step-item {
                flex-direction: column;
                gap: 12px;
            }

            .step-number {
                min-width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .info-box {
                padding: 24px;
                margin: 32px 0;
            }

            .info-box-title {
                font-size: 20px;
            }

            .info-box-content {
                font-size: 15px;
            }

            .price-card {
                padding: 32px 24px;
            }

            .faq-section {
                margin: 50px 0;
            }

            .faq-title {
                font-size: 32px;
                margin-bottom: 32px;
            }

            .faq-item {
                padding: 24px;
            }

            .faq-question {
                font-size: 18px;
            }

            .faq-answer {
                font-size: 15px;
            }

            .price-badge {
                font-size: 18px;
                padding: 6px 16px;
            }

            .cta-section {
                padding: 40px 24px;
                margin: 40px 0;
            }

            .cta-section h2 {
                font-size: 28px;
                margin-bottom: 16px;
            }

            .cta-section p {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary,
            .btn-white,
            .btn-green {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
                padding: 14px 28px;
                font-size: 16px;
            }

            .image-section img {
                max-height: 250px;
            }
        }

        @media (max-width: 375px) {
            .hero h1 {
                font-size: 32px;
            }

            .section-title,
            .faq-title,
            .cta-section h2 {
                font-size: 28px;
            }

            .process-steps,
            .info-box,
            .price-card {
                padding: 20px;
            }
        }
    