
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft JhengHei', 'Arial', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
        }

        article {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px 20px;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(30, 136, 229, 0.1);
            border-radius: 12px;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            border-radius: 12px;
            color: white;
        }

        h1 {
            font-size: 2.2em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle {
            font-size: 1.1em;
            opacity: 0.95;
            margin-top: 10px;
        }

        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .intro {
            background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #1e88e5;
            margin-bottom: 35px;
            font-size: 1.1em;
            line-height: 1.9;
        }

        section {
            margin: 35px 0;
        }

        h2 {
            color: #1e88e5;
            font-size: 1.8em;
            margin: 30px 0 20px 0;
            padding-bottom: 12px;
            border-bottom: 3px solid #2196F3;
        }

        h3 {
            color: #1e88e5;
            font-size: 1.4em;
            margin: 25px 0 15px 0;
            padding-left: 15px;
            border-left: 4px solid #2196F3;
        }

        p {
            margin: 18px 0;
            text-align: justify;
            font-size: 1.05em;
        }

        .highlight-box {
            background: linear-gradient(135deg, #fff8e1 0%, #fffef7 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffa726;
            margin: 25px 0;
        }

        .warning-box {
            background: linear-gradient(135deg, #ffebee 0%, #fff5f7 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ef5350;
            margin: 25px 0;
        }

        .info-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #1e88e5;
            margin: 25px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        th {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        tr:hover {
            background-color: #f5f9ff;
        }

        ul, ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        li {
            margin: 12px 0;
            line-height: 1.8;
        }

        .faq-section {
            margin: 40px 0;
        }

        .faq-item {
            background: white;
            margin: 15px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #e3f2fd;
        }

        .faq-question {
            background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
            padding: 18px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            color: #1e88e5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #bbdefb 0%, #e3f2fd 100%);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 25px;
            background: white;
        }

        .faq-answer.active {
            max-height: 800px;
            padding: 20px 25px;
        }

        .contact-section {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 35px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }

        .contact-section h2 {
            color: white;
            border-bottom: 3px solid white;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .contact-item {
            background: rgba(255,255,255,0.15);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .contact-item h3 {
            color: white;
            border: none;
            padding: 0;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1em;
            margin: 20px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .phone-btn {
            display: inline-block;
            background: #1e88e5;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1em;
            margin: 20px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }

        .phone-btn:hover {
            background: #1976d2;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.6em;
            }

            h2 {
                font-size: 1.4em;
            }

            h3 {
                font-size: 1.2em;
            }

            article {
                padding: 20px 15px;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            table {
                font-size: 0.9em;
            }

            th, td {
                padding: 10px;
            }
        }
    