
        /* Base Style Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding: 20px;
        }

        /* Container Style */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 40px;
        }

        /* Heading Styles */
        h1 {
            color: #2c3e50;
            font-size: 28px;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #3498db;
            font-weight: 700;
        }

        h2 {
            color: #34495e;
            font-size: 22px;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
            font-weight: 600;
        }

        h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 20px;
            background-color: #3498db;
            border-radius: 3px;
        }

        h3 {
            color: #4a6583;
            font-size: 18px;
            margin: 20px 0 10px;
            font-weight: 600;
        }

        /* Paragraph and List Styles */
        p {
            margin: 10px 0;
            font-size: 15px;
            color: #555;
            text-align: justify;
        }

        /* Core Slogan Style */
        .core-slogan {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
            text-align: center;
            background-color: #e8f4fd;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0 30px;
        }

        ul {
            margin: 10px 0 10px 25px;
            font-size: 15px;
            color: #555;
        }

        li {
            margin: 8px 0;
        }

        /* Highlighted Text */
        strong {
            color: #2c3e50;
            font-weight: 600;
        }

        /* Table Styles */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        }

        th {
            background-color: #3498db;
            color: white;
            padding: 12px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
        }

        td {
            padding: 12px;
            font-size: 14px;
            color: #555;
            border-bottom: 1px solid #e9ecef;
        }

        tr:nth-child(even) {
            background-color: #f7f9fc;
        }

        tr:hover {
            background-color: #e8f4fd;
            transition: background-color 0.2s ease;
        }

        /* Comparison Table Header */
        .comparison-th {
            background-color: #2980b9;
        }

        /* Card Style for Key Information */
        .card {
            background-color: #f0f7ff;
            border-left: 4px solid #3498db;
            padding: 15px 20px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Benefit Icons Section */
        .benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        .benefit-item {
            flex: 1 1 200px;
            background-color: #f7f9fc;
            padding: 12px 15px;
            border-radius: 6px;
            font-size: 14px;
            color: #34495e;
        }

        /* Note Style */
        .note {
            font-size: 13px;
            color: #666;
            font-style: italic;
            margin: 10px 0 20px;
        }

        /* Responsive Adaptation */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 24px;
            }

            h2 {
                font-size: 20px;
            }

            h3 {
                font-size: 16px;
            }

            p, ul, td, th {
                font-size: 14px;
            }

            .benefits {
                flex-direction: column;
            }

            .core-slogan {
                font-size: 14px;
                padding: 12px;
            }
        }
    