
    .ovw-page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 18px 56px;
      color: #17211e;
      font-family: Arial, Inter, sans-serif;
      line-height: 1.65;
    }
    .ovw-page * {
      box-sizing: border-box;
    }
    .ovw-page a {
      color: #008266;
      text-decoration: none;
    }
    .ovw-page a:hover {
      color: #005243;
      text-decoration: underline;
    }
    .ovw-eyebrow {
      margin: 0 0 10px;
      color: #b75c2d;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .ovw-page h2 {
      margin: 0 0 16px;
      color: #003d32;
      font-size: 34px;
      line-height: 1.18;
      letter-spacing: 0;
    }
    .ovw-page h3 {
      margin: 0 0 10px;
      color: #005243;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: 0;
    }
    .ovw-page p {
      margin: 0 0 16px;
      color: #46524e;
      font-size: 16px;
    }
    .ovw-split {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
      gap: 34px;
      align-items: center;
    }
    .ovw-section {
      margin-top: 48px;
    }
    .ovw-band {
      margin-top: 48px;
      padding: 30px;
      background: #f3f7f5;
      border: 1px solid #dce8e4;
      border-radius: 8px;
    }
    .ovw-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .ovw-grid.two {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ovw-card {
      min-height: 100%;
      padding: 22px;
      background: #ffffff;
      border: 1px solid #dce8e4;
      border-radius: 8px;
    }
    .ovw-card p:last-child,
    .ovw-card ul:last-child {
      margin-bottom: 0;
    }
    .ovw-media-slot {
      min-height: 320px;
      background: linear-gradient(135deg, #e7f2ee 0%, #f8ede6 100%);
      border: 1px dashed #b8c9c3;
      border-radius: 8px;
    }
    .ovw-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }
    .ovw-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
    }
    .ovw-btn.primary {
      color: #ffffff;
      background: #008266;
    }
    .ovw-btn.primary:hover {
      color: #ffffff;
      background: #005243;
      text-decoration: none;
    }
    .ovw-btn.secondary {
      color: #005243;
      background: #ffffff;
      border: 1px solid #008266;
    }
    .ovw-btn.secondary:hover {
      color: #003d32;
      border-color: #005243;
      text-decoration: none;
    }
    .ovw-contact-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .ovw-contact-list li {
      padding: 16px 18px;
      background: #ffffff;
      border: 1px solid #dce8e4;
      border-radius: 8px;
    }
    .ovw-label {
      display: block;
      margin-bottom: 4px;
      color: #65716d;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .ovw-value {
      color: #17211e;
      font-size: 16px;
      font-weight: 600;
      word-break: break-word;
    }
    .ovw-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .ovw-list li {
      position: relative;
      padding-left: 18px;
      color: #46524e;
      font-size: 16px;
    }
    .ovw-list li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #d77e49;
    }
    .ovw-steps {
      counter-reset: ovw-step;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .ovw-step {
      position: relative;
      padding: 24px 20px 22px;
      background: #ffffff;
      border: 1px solid #dce8e4;
      border-radius: 8px;
    }
    .ovw-step:before {
      counter-increment: ovw-step;
      content: counter(ovw-step);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      margin-bottom: 14px;
      color: #ffffff;
      font-weight: 700;
      background: #008266;
      border-radius: 50%;
    }
    .ovw-faq {
      display: grid;
      gap: 14px;
    }
    .ovw-faq details {
      padding: 18px 20px;
      background: #ffffff;
      border: 1px solid #dce8e4;
      border-radius: 8px;
    }
    .ovw-faq summary {
      cursor: pointer;
      color: #003d32;
      font-weight: 700;
    }
    .ovw-faq p {
      margin: 12px 0 0;
    }
    .ovw-note {
      margin-top: 16px;
      color: #65716d;
      font-size: 14px;
    }
    @media (max-width: 900px) {
      .ovw-split,
      .ovw-grid,
      .ovw-grid.two,
      .ovw-steps {
        grid-template-columns: 1fr;
      }
      .ovw-page h2 {
        font-size: 28px;
      }
      .ovw-band {
        padding: 22px;
      }
      .ovw-media-slot {
        min-height: 240px;
      }
    }
  