body {
        font-family: '微軟正黑體', 'Microsoft JhengHei', Arial, sans-serif;
        background-color: #f4f7f6;
        color: #333;
        margin: 0;
        padding: 20px 0;
    }
    .container {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    header h1 {
        color: #e65252;
        font-size: 1.8em;
        text-align: center;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }
    header h2 {
        color: #555;
        font-size: 1.2em;
        text-align: center;
        margin-top: -10px;
    }
    .question-block {
        margin-bottom: 25px;
        padding: 15px;
        background-color: #f9f9f9;
        border-radius: 8px;
    }
    .question-block h3 {
        color: #3c9399;
        font-size: 1.1em;
        margin-top: 0;
    }
    label {
        display: block;
        padding: 10px;
        margin-bottom: 8px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    label:hover {
        background-color: #f0f0f0;
    }
    input[type="radio"]:checked + span, input[type="radio"]:checked {
        accent-color: #e65252;
    }
    .cta-button {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background-color: #e65252;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-top: 20px;
    }
    .cta-button:hover {
        background-color: #cf4848;
    }
    .result-box {
        padding: 25px;
        background-color: #eaf8f9;
        border: 3px solid #3c9399;
        border-radius: 10px;
        text-align: center;
    }
    .result-title {
        font-size: 1.4em;
        font-weight: bold;
        color: #e65252;
        margin-bottom: 15px;
    }
    .result-box h3 {
        font-size: 1.6em;
        color: #3c9399;
    }
    .action-list {
        text-align: left;
        margin: 20px 0;
        padding: 15px;
        background-color: #fff;
        border-radius: 8px;
    }
    .action-list ul {
        list-style: none;
        padding: 0;
    }
    .action-list li {
        margin-bottom: 10px;
        font-size: 1.05em;
        color: #555;
    }
    .cta-line-button {
        display: block;
        padding: 15px 20px;
        background-color: #00b900; /* LINE Green */
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s;
        margin-top: 20px;
    }
    .cta-line-button:hover {
        background-color: #009900;
    }
    .disclaimer-text {
        font-size: 0.8em;
        color: #888;
        margin-top: 15px;
    }
    .footer-note {
        margin-top: 40px;
        padding: 15px;
        border-top: 1px dashed #ccc;
        font-size: 0.8em;
        color: #777;
        text-align: center;
    }