
    :root {
        --hksev-blue-dark: #1e293b;
        --hksev-blue-primary: #3b82f6;
        --hksev-blue-light: #60a5fa;
        --hksev-bg-surface: #f0f9ff;
        --hksev-white: #ffffff;
        --hksev-gray: #64748b;
        --hksev-radius: 18px;
        --hksev-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
    }

    .hksev-article-container {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
        max-width: 800px;
        margin: 0 auto;
        color: var(--hksev-blue-dark);
        line-height: 1.6;
        background-color: var(--hksev-white);
        padding: 20px;
    }

    .hksev-article-container h1 {
        font-size: 2.2rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--hksev-blue-dark) 0%, var(--hksev-blue-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hksev-article-container h2 {
        font-size: 1.5rem;
        color: var(--hksev-blue-dark);
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .hksev-article-container h2::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 24px;
        background-color: var(--hksev-blue-primary);
        margin-right: 12px;
        border-radius: 4px;
    }

    .hksev-article-container p {
        margin-bottom: 1.2rem;
        color: #334155;
        font-size: 1.05rem;
    }

    .hksev-meta {
        background-color: var(--hksev-bg-surface);
        padding: 1.5rem;
        border-radius: var(--hksev-radius);
        border-left: 4px solid var(--hksev-blue-primary);
        margin-bottom: 2rem;
        font-style: italic;
        color: var(--hksev-gray);
    }

    /* Hero Price Card */
    .hksev-hero-wrapper {
        position: relative;
        margin-bottom: 3rem;
        border-radius: var(--hksev-radius);
        overflow: hidden;
        box-shadow: var(--hksev-shadow);
    }

    .hksev-hero-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .hksev-hero-wrapper:hover .hksev-hero-img {
        transform: scale(1.02);
    }

    .hksev-price-card {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, var(--hksev-blue-primary), var(--hksev-blue-light));
        padding: 1.5rem;
        border-radius: 20px;
        color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        max-width: 200px;
        text-align: center;
    }

    .hksev-price-large {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        display: block;
        margin-bottom: 0.5rem;
    }

    .hksev-price-list {
        text-align: left;
        font-size: 0.85rem;
        list-style: none;
        padding: 0;
        margin: 0;
        opacity: 0.95;
    }

    .hksev-price-list li::before {
        content: '✓ ';
        font-weight: bold;
    }

    /* Table Styles */
    .hksev-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 2rem 0;
        border-radius: var(--hksev-radius);
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
    }

    .hksev-table th {
        background-color: var(--hksev-bg-surface);
        color: var(--hksev-blue-dark);
        font-weight: 600;
        padding: 1rem;
        text-align: left;
    }

    .hksev-table td {
        padding: 1rem;
        border-top: 1px solid #e2e8f0;
        background-color: white;
    }

    /* FAQ Section */
    .hksev-faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hksev-faq-item {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: var(--hksev-radius);
        padding: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .hksev-faq-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--hksev-shadow);
        border-color: var(--hksev-blue-light);
    }

    .hksev-faq-q {
        color: var(--hksev-blue-primary);
        font-weight: 600;
        margin-bottom: 0.8rem;
        display: block;
        font-size: 1.1rem;
    }

    .hksev-price-badge {
        display: inline-block;
        background-color: var(--hksev-blue-primary);
        color: white;
        padding: 4px 12px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-right: 8px;
    }

    /* CTA Buttons */
    .hksev-cta-section {
        margin: 3rem 0;
        text-align: center;
        background: var(--hksev-bg-surface);
        padding: 3rem 2rem;
        border-radius: var(--hksev-radius);
    }

    .hksev-btn-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }

    .hksev-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        min-width: 200px;
    }

    .hksev-btn-primary {
        background-color: var(--hksev-blue-primary);
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .hksev-btn-primary:hover {
        background-color: var(--hksev-blue-dark);
        transform: translateY(-2px);
    }

    .hksev-btn-secondary {
        background-color: transparent;
        border: 2px solid var(--hksev-blue-primary);
        color: var(--hksev-blue-primary);
    }

    .hksev-btn-secondary:hover {
        background-color: var(--hksev-bg-surface);
        transform: translateY(-2px);
    }

    .hksev-location-box {
        background-color: white;
        border-radius: var(--hksev-radius);
        padding: 20px;
        margin-top: 2rem;
        border: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .hksev-icon {
        font-size: 24px;
    }

    @media (max-width: 768px) {
        .hksev-hero-img { height: 250px; }
        .hksev-price-card { 
            padding: 1rem; 
            bottom: 10px; 
            right: 10px; 
            max-width: 140px;
        }
        .hksev-price-large { font-size: 1.8rem; }
        .hksev-btn-group { flex-direction: column; }
        .hksev-btn { width: 100%; }
    }
