  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #eef2f7;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
      padding: 10px;
      min-height: 100vh;
    }

    .container {
      max-width: 720px;
      margin: 0 auto;
      background: white;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }

    /* 内容区域全局内边距10px，圆角5px风格 */
    .content-area {
      padding: 10px;
      background: #ffffff;
    }

    /* 图片区域完全整合到内容流中，不保留原image-area边栏，适应手机电脑 */
    .hero-float-img {
      width: 100%;
      max-width: 280px;
      border-radius: 5px;
      margin: 0 0 12px 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      display: block;
    }

    /* 桌面端让首图右浮动，不影响阅读流，但手机默认不浮动 */
    @media (min-width: 640px) {
      .hero-float-img {
        float: right;
        width: 260px;
        margin-left: 16px;
        margin-bottom: 12px;
        shape-outside: margin-box;
      }
      .clearfix::after {
        content: "";
        clear: both;
        display: table;
      }
    }

    .badge-top {
      background: #d32f2f;
      color: white;
      font-weight: 800;
      font-size: 12px;
      display: inline-block;
      padding: 4px 14px;
      border-radius: 5px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    h1 {
      font-size: 28px;
      font-weight: 900;
      color: #1a237e;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    h1 span {
      color: #d32f2f;
    }
    .ph-flag {
      font-size: 28px;
      vertical-align: middle;
      display: inline-block;
    }
    .sub-head {
      background: #ffb300;
      color: #1a237e;
      font-weight: 800;
      font-size: 11px;
      padding: 4px 14px;
      border-radius: 5px;
      display: inline-block;
      margin: 8px 0 6px;
    }
    .tagline {
      font-size: 14px;
      color: #2c3e4e;
      margin-bottom: 6px;
      font-weight: 500;
    }
    .tagline i {
      color: #d32f2f;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0 12px;
    }
    .badge-item {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 5px;
      padding: 5px 12px;
      font-size: 11px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #1a237e;
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }
    .badge-item i {
      font-size: 12px;
    }
    .green-icon { color: #2e7d32; }
    .pink-icon { color: #c2185b; }

    .table-wrapper {
      background: #f0f4ff;
      border-radius: 5px;
      margin: 14px 0 12px;
      padding: 8px 6px;
    }
    .table-header {
      display: grid;
      grid-template-columns: 28px 1.4fr 1.5fr 1.8fr;
      background: #1a237e;
      color: white;
      border-radius: 5px;
      padding: 8px 10px;
      font-size: 10px;
      font-weight: 700;
      align-items: center;
      margin-bottom: 6px;
    }
    .table-header .salary-col {
      text-align: right;
    }
    .table-row {
      display: grid;
      grid-template-columns: 28px 1.4fr 1.5fr 1.8fr;
      background: white;
      border-radius: 5px;
      padding: 8px 10px;
      font-size: 10px;
      align-items: center;
      margin-bottom: 6px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    }
    .table-row .icon-col {
      text-align: center;
      font-size: 16px;
    }
    .table-row .salary-col {
      color: #d32f2f;
      font-weight: 800;
      text-align: right;
      font-size: 10px;
    }
    .table-row .check-col {
      color: #2e7d32;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .two-col {
      display: flex;
      gap: 12px;
      margin: 16px 0 12px;
      flex-wrap: wrap;
    }
    .col-card {
      background: #ffffff;
      border-radius: 5px;
      flex: 1 1 240px;
      padding: 12px;
      border: 1px solid #eef2fa;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }
    .col-card h4 {
      font-size: 13px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #1a237e;
      margin-bottom: 10px;
    }
    .col-card ul {
      padding-left: 18px;
      font-size: 11px;
      color: #1f2937;
      line-height: 1.55;
    }
    .col-card ul li {
      margin-bottom: 5px;
    }
    .col-card ul li i {
      color: #2e7d32;
      margin-right: 6px;
      font-size: 10px;
    }
    .sticky-note {
      background: #ffecb3;
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 10px;
      font-weight: 800;
      display: inline-block;
      margin-top: 10px;
      color: #b85c00;
    }
    .row-flex {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 12px;
    }
    .row-flex .text-part {
      flex: 1;
      min-width: 140px;
    }
    .row-flex .img-part {
      flex-shrink: 0;
      text-align: left;
    }
    .row-flex .img-part img {
      width: 160px;
      height: auto;
      border-radius: 5px;
      object-fit: cover;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      display: block;
    }
    @media (max-width: 520px) {
      .row-flex .img-part img {
        width: 130px;
      }
    }

    .payment-section {
      background: #fffae9;
      border-radius: 5px;
      margin: 14px 0 12px;
      padding: 12px 10px;
      text-align: center;
    }
    .payment-section .label {
      font-size: 11px;
      font-weight: 800;
      color: #1a237e;
      margin-bottom: 8px;
    }
    .payment-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .pay-item {
      font-size: 11px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pay-item i {
      font-size: 28px;
      margin-bottom: 4px;
    }
    .gcash { color: #0066b4; }
    .maya { color: #d32f2f; }
    .bank { color: #1a237e; }

    .testimonials {
      background: #fef2f5;
      border-radius: 5px;
      margin: 14px 0 12px;
      padding: 12px 10px;
    }
    .testimonials .title {
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      color: #1a237e;
      margin-bottom: 12px;
    }
    .testi-grid {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .testi-card {
      background: white;
      border-radius: 5px;
      flex: 1 1 140px;
      padding: 12px 8px;
      font-size: 10px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }
    .testi-card .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #ede7f6;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .testi-card .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testi-card .stars {
      color: #ffb300;
      font-size: 11px;
      letter-spacing: 1px;
    }
    .testi-card .name {
      font-weight: 800;
      margin: 5px 0 2px;
      font-size: 11px;
    }
    .testi-card .role {
      color: #5b6e8c;
      font-size: 9px;
      margin-bottom: 4px;
    }
    .faq-section {
      background: #eef2fa;
      border-radius: 5px;
      margin: 14px 0 16px;
      padding: 12px 10px;
    }
    .faq-section .title {
      font-size: 12px;
      font-weight: 800;
      text-align: center;
      color: #1a237e;
      margin-bottom: 12px;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    @media (max-width: 560px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
    .faq-item {
      background: white;
      border-radius: 5px;
      padding: 8px 10px;
      font-size: 10.5px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #e2e8f0;
    }
    .faq-item i {
      font-size: 20px;
      color: #1a237e;
      width: 28px;
      text-align: center;
    }

    .cta-block {
      background: #1b5e20;
      margin: 12px 0 10px;
      border-radius: 5px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      flex-wrap: wrap;
      gap: 10px;
    }
    .cta-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cta-left i {
      font-size: 34px;
      color: #25d366;
    }
    .cta-left div {
      font-weight: 800;
      font-size: 14px;
      line-height: 1.2;
    }
    .cta-left div small {
      font-weight: 500;
      font-size: 10px;
      display: block;
      opacity: 0.9;
    }
    .cta-btn {
      background: #ffb300;
      color: #1a237e;
      font-weight: 800;
      padding: 8px 20px;
      border-radius: 5px;
      font-size: 13px;
      border: none;
      cursor: default;
      white-space: nowrap;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .limited-slot {
      background: #f44336;
      color: white;
      border-radius: 5px;
      margin: 12px 0 10px;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .limited-slot span:first-child {
      font-weight: 800;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .limited-slot .apply-tag {
      background: #ffb300;
      color: #1a237e;
      padding: 4px 18px;
      border-radius: 5px;
      font-weight: 800;
      font-size: 11px;
    }

    .cta-subnote {
      text-align: center;
      font-size: 10px;
      color: #3b4e62;
      padding: 8px 10px;
      background: #f7f9fc;
      border-radius: 5px;
      margin: 8px 0 0;
    }
    .cta-subnote i {
      color: #ffb300;
    }

    /* 基础手机字体微调 */
    @media (max-width: 640px) {
      body {
        padding: 6px;
      }
      .content-area {
        padding: 10px;
      }
      h1 {
        font-size: 24px;
      }
      .badge-item {
        font-size: 10px;
        padding: 4px 10px;
      }
      .table-header, .table-row {
        font-size: 9px;
        padding: 6px 8px;
        gap: 4px;
      }
      .table-row .salary-col {
        font-size: 9px;
      }
      .col-card h4 {
        font-size: 12px;
      }
      .col-card ul li {
        font-size: 10px;
      }
      .sticky-note {
        font-size: 9px;
      }
      .cta-left div {
        font-size: 12px;
      }
      .cta-btn {
        font-size: 12px;
        padding: 6px 16px;
      }
      .pay-item i {
        font-size: 26px;
      }
      .testi-card .name {
        font-size: 10px;
      }
      .faq-item {
        font-size: 9px;
        padding: 6px 8px;
      }
      .faq-item i {
        font-size: 18px;
        width: 24px;
      }
    }

    @media (max-width: 480px) {
      .badge-row {
        gap: 6px;
      }
      .hero-float-img {
        max-width: 100%;
        margin-bottom: 10px;
      }
      .row-flex .img-part img {
        width: 120px;
      }
      .col-card {
        padding: 10px;
      }
      .table-header, .table-row {
        grid-template-columns: 24px 1.3fr 1.4fr 1.6fr;
        padding: 6px 6px;
        font-size: 8.5px;
      }
      .table-row .salary-col {
        font-size: 8.5px;
      }
      .table-row .check-col i {
        margin-right: 2px;
      }
      .cta-block {
        flex-direction: column;
        text-align: center;
        border-radius: 5px;
        padding: 12px;
      }
      .cta-left {
        justify-content: center;
      }
      .limited-slot {
        justify-content: center;
        text-align: center;
      }
      .payment-icons {
        gap: 12px;
      }
    }

    /* 适应所有间距为10px基本规则，额外微调 */
    .content-area > * {
      margin-bottom: 0;
    }
    .two-col, .table-wrapper, .payment-section, .testimonials, .faq-section, .cta-block, .limited-slot {
      margin-top: 12px;
      margin-bottom: 12px;
    }
    .badge-row {
      margin-top: 8px;
    }