
        :root {
            --primary-orange: #FF9A3D;
            --primary-orange-light: rgba(255, 154, 61, 0.1);
            --text-dark: #333333;
            --text-gray: #666666;
            --neutral-gray: #E0E0E0;
            --hover-beige: #F8F5E6;
            --pure-white: #FFFFFF;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #FAFAFA;
            margin: 0;
            padding: 10px;
        }

        h1, h2, h3 {
            color: var(--text-dark);
            font-weight: bold;
        }

        h1 {
            font-size: 2.2em;
            margin-bottom: 0.5em;
            color: var(--primary-orange);
        }

        h2 {
            font-size: 1.8em;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            border-bottom: 2px solid var(--primary-orange);
            padding-bottom: 0.3em;
        }

        h3 {
            font-size: 1.4em;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
            color: var(--primary-orange);
        }

        p {
            margin-bottom: 1em;
        }

        a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        th, td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid var(--neutral-gray);
        }

        th {
            background-color: var(--primary-orange-light);
            font-weight: bold;
            color: var(--text-dark);
        }

        tr:nth-child(even) {
            background-color: var(--pure-white);
        }

        tr:nth-child(odd) {
            background-color: #F9F9F9;
        }

        tr:hover {
            background-color: var(--hover-beige);
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 2em 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid var(--neutral-gray);
        }

        .comparison-table thead th {
            background-color: var(--primary-orange);
            color: var(--pure-white);
            font-weight: bold;
            font-size: 1.1em;
        }

        .comparison-table th.our-product {
            background-color: var(--primary-orange-light);
            font-weight: bold;
        }

        .our-advantage {
            color: var(--primary-orange);
            font-weight: bold;
        }

        .competitor-disadvantage {
            color: var(--text-gray);
        }

        .icon-check::before {
            content: "✔️";
            /* Alternatively, use a sun or orange emoji: ☀️ or 🍊 */
            margin-right: 5px;
        }

        .icon-cross::before {
            content: "❌";
            /* Alternatively, use a wilted leaf emoji: 🥀 */
            margin-right: 5px;
        }

        .quote-box {
            background-color: var(--primary-orange-light);
            border-left: 4px solid var(--primary-orange);
            padding: 1em 1.5em;
            margin: 1.5em 0;
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-orange);
            color: var(--pure-white);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 1em;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #E88A2E;
            text-decoration: none;
        }

        .section {
            margin-bottom: 2.5em;
        }

        .keyword {
            font-weight: bold;
            color: var(--primary-orange);
        }
    