
    .ace-page {
      font-family: Arial, Helvetica, sans-serif;
      color: #1f2933;
      background: #f8faf9;
      line-height: 1.65;
    }
    .ace-page * {
      box-sizing: border-box;
    }
    .ace-page a {
      color: #0f766e;
      text-decoration: none;
    }
    .ace-page a:hover {
      text-decoration: underline;
    }
    .ace-page img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .ace-page h1,
    .ace-page h2,
    .ace-page h3 {
      color: #111827;
      line-height: 1.2;
      margin-top: 0;
    }
    .ace-page h1 {
      font-size: 42px;
    }
    .ace-page h2 {
      font-size: 26px;
    }
    .ace-page h3 {
      font-size: 19px;
    }
    .ace-page p {
      margin: 0;
    }
    .ace-page p,
    .ace-page li,
    .ace-page td,
    .ace-page th,
    .ace-page a {
      font-size: 16px;
    }
    .keyword-link {
      display: inline;
      color: #0f766e !important;
      border-bottom: 2px solid #f0b45b;
      font-weight: 700;
    }
    .content-wrap {
      width: 100%;
      max-width: 1180px;
      padding: 56px 22px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
      gap: 34px;
      align-items: center;
    }
    .media-grid {
      display: grid;
      grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }
    .media-panel {
      display: grid;
      gap: 16px;
      width: 100%;
      max-width: 440px;
      margin: 0 auto;
    }
    .media-panel img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
      background: #e5e7eb;
    }
    .advantage-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .advantage-row p {
      padding: 18px;
      background: #f8fafc;
      border: 1px solid #dde5e1;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(28, 35, 42, 0.06);
    }
    .advantage-full {
      grid-column: 1 / -1;
    }
    .soft-card {
      background: #ffffff;
      border: 1px solid #dde5e1;
      border-radius: 8px;
      box-shadow: 0 10px 26px rgba(28, 35, 42, 0.07);
    }
    .accent-panel {
      background: #f2f7f5;
      border-left: 4px solid #0f766e;
      border-radius: 8px;
    }
    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 18px;
      background: #0f766e;
      color: #ffffff !important;
      border-radius: 6px;
      font-weight: 700;
      text-decoration: none !important;
    }
    @media (max-width: 860px) {
      .hero-grid,
      .media-grid {
        grid-template-columns: 1fr;
      }
      .ace-page h1 {
        font-size: 32px;
      }
      .content-wrap {
        padding: 42px 18px;
      }
      .media-panel {
        max-width: 380px;
      }
      .advantage-row {
        grid-template-columns: 1fr;
      }
      .advantage-full {
        grid-column: auto;
      }
    }
  