
  .machined-page {
    --rx-navy: #102a43;
    --rx-blue: #1e88e5;
    --rx-blue-dark: #0f5fa8;
    --rx-light: #f5f9ff;
    --rx-border: #d9e2ec;
    --rx-text: #334155;
    --rx-muted: #52616f;

    font-family: Calibri, Arial, Helvetica, sans-serif;
    color: var(--rx-text);
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 22px 64px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .machined-page * {
    box-sizing: border-box;
  }

  .machined-page img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(16, 42, 67, 0.12);
  }

  .hero-section {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #102a43, #1e88e5);
    padding: 56px 48px;
    color: #ffffff;
    margin-bottom: 52px;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.14);
  }

  .hero-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    right: -80px;
    bottom: -80px;
  }

  .hero-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .hero-section h1 {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
  }

  .hero-section p {
    max-width: 780px;
    font-size: 18px;
    line-height: 1.75;
    color: #eaf4ff;
    margin: 0;
  }

  .hero-image {
    margin-top: 34px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
  }

  .content-section {
    margin-bottom: 46px;
    padding: 38px;
    border-radius: 24px;
    border: 1px solid var(--rx-border);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 32px rgba(16, 42, 67, 0.06);
  }

  .two-column {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: center;
  }

  .two-column.reverse {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--rx-navy);
    margin: 0 0 20px;
    padding-left: 16px;
    border-left: 5px solid var(--rx-blue);
  }

  .content-section p {
    font-size: 16px;
    color: var(--rx-muted);
    margin: 0 0 18px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
  }

  .feature-item {
    background: var(--rx-light);
    border: 1px solid var(--rx-border);
    border-left: 4px solid var(--rx-blue);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    color: var(--rx-text);
  }

  .highlight-box {
    margin-top: 24px;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid #bfdbfe;
  }

  .highlight-box strong {
    color: var(--rx-blue-dark);
  }

  .image-wrap {
    background: #f8fafc;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--rx-border);
  }

  .image-caption {
    text-align: center;
    margin-top: 12px;
    color: #64748b;
    font-size: 14px;
  }

  .quote-section {
    text-align: center;
    padding: 56px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #102a43, #1e88e5);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.16);
    margin-top: 56px;
  }

  .quote-section h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
  }

  .quote-section p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #eaf4ff;
    font-size: 17px;
  }

  .quote-button {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 999px;
    background: #ffffff;
    color: #102a43;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0,0,0,0.20);
    transition: all 0.25s ease;
  }

  .quote-button:hover {
    transform: translateY(-2px);
    background: #eef6ff;
    color: #0f5fa8;
  }

  @media (max-width: 768px) {
    .machined-page {
      padding: 34px 16px 48px;
    }

    .hero-section,
    .content-section,
    .quote-section {
      padding: 28px 22px;
    }

    .hero-section h1 {
      font-size: 38px;
    }

    .two-column,
    .two-column.reverse,
    .feature-grid {
      grid-template-columns: 1fr;
    }

    .section-title {
      font-size: 28px;
    }
  }
