
    /* 基礎設定 */
    .hksev-wrapper {
        font-family: sans-serif;
        background-color: #fff7ed;
        color: #431407;
        line-height: 1.6;
        box-sizing: border-box;
    }
    .hksev-wrapper * {
        box-sizing: border-box;
    }
    .hksev-sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }
    .hksev-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .hksev-text-center { text-align: center; }
    .hksev-text-justify { text-align: justify; }
    .hksev-mb-10 { margin-bottom: 40px; }
    .hksev-mt-8 { margin-top: 32px; }

    /* Hero Banner */
    .hksev-hero {
        background-color: #ffedd5;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .hksev-hero img {
        width: 100%;
        max-width: 900px;
        display: block;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* CTA 按鈕區 */
    .hksev-cta-box {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        padding: 24px;
        border-top: 4px solid #ea580c;
        display: flex;
        gap: 24px;
        position: relative;
        z-index: 10;
    }
    .hksev-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        transition: 0.2s;
    }
    .hksev-btn-whatsapp { background-color: #25D366; }
    .hksev-btn-whatsapp:hover { background-color: #1ebe57; }
    .hksev-btn-phone { background-color: #ea580c; }
    .hksev-btn-phone:hover { background-color: #c2410c; }

    /* 套餐內容 */
    .hksev-title {
        color: #ea580c;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 16px;
    }
    .hksev-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    .hksev-card {
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #ffedd5;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }
    .hksev-icon-circle {
        width: 48px;
        height: 48px;
        background: #fff7ed;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px auto;
        color: #ea580c;
        font-size: 20px;
    }

    /* 絕育須知 */
    .hksev-info-section {
        background: #fff;
        padding: 40px 0;
        border-top: 1px solid #ffedd5;
        border-bottom: 1px solid #ffedd5;
        margin-bottom: 40px;
    }
    .hksev-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hksev-info-card {
        border-radius: 16px;
        padding: 24px;
        position: relative;
        overflow: hidden;
    }
    .hksev-info-card.orange { background: #fff7ed; border: 1px solid #ffedd5; }
    .hksev-info-card.red { background: #fef2f2; border: 1px solid #fee2e2; }
    .hksev-info-card.blue { background: #eff6ff; border: 1px solid #dbeafe; grid-column: span 2; }
    .hksev-number {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: bold;
        margin-right: 12px;
    }
    .hksev-info-header { display: flex; align-items: center; margin-bottom: 12px; }
    .hksev-info-header h3 { margin: 0; font-size: 20px; color: #1f2937; }

    /* 醫院理念 */
    .hksev-features {
        background: #fff;
        border-radius: 24px;
        padding: 32px;
        border: 1px solid #ffedd5;
        margin-bottom: 40px;
    }
    .hksev-feature-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    /* 地圖區 */
    .hksev-map-section {
        background: #fff7ed;
        padding: 40px 0;
        border-top: 1px solid #ffedd5;
    }
    .hksev-map-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #f3f4f6;
    }
    .hksev-map-content { padding: 24px; }
    .hksev-tag {
        font-size: 12px;
        font-weight: bold;
        padding: 4px 12px;
        border-radius: 99px;
        display: inline-block;
        margin-bottom: 12px;
    }
    .hksev-tag-orange { background: #ea580c; color: #fff; }
    .hksev-tag-gray { background: #e5e7eb; color: #374151; }
    .hksev-iframe-container {
        width: 100%;
        height: 224px;
        background: #e5e7eb;
    }

    /* 手機版響應式設定 */
    @media (max-width: 768px) {
        .hksev-cta-box { flex-direction: column; gap: 12px; padding: 16px; }
        .hksev-grid-3 { grid-template-columns: 1fr; }
        .hksev-grid-2 { grid-template-columns: 1fr; }
        .hksev-info-card.blue { grid-column: span 1; }
        .hksev-hero img { border-radius: 0; }
    }
    @media (min-width: 769px) {
        .hksev-hero img { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
    }
