
  :root {
    --primary-color: #0A4DA2;
    --dark-color: #06357A;
    --bg-light: #F3F6FA;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #E2E8F0;
  }

  .py-section {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    padding: 50px 10px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .py-section * {
    box-sizing: border-box;
  }

  /* H2 */
  .py-section h2 {
    text-align: center;
    font-size: 46px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
  }

  /* TABLE */
  .py-comparison-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
  }

  .py-table-wrapper {
    overflow-x: auto;
  }

  .py-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
  }

  .py-table th,
  .py-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
  }

  .py-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
  }

  .py-table td:first-child {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--dark-color);
  }

  .py-table td:nth-child(2) {
    color: var(--primary-color);
    font-weight: 500;
  }

  .py-table td:nth-child(3) {
    color: var(--text-muted);
  }

  .py-comparison-image {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }

  /* APPLICATION */
  .py-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .py-scenario-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
  }

  .py-scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 77, 162, 0.08);
  }

  .py-scenario-img-wrapper {
    height: 240px;
    overflow: hidden;
  }

  .py-scenario-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .py-scenario-content {
    padding: 20px;
  }

  .py-scenario-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 6px;
  }

  .py-scenario-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .py-scenario-list li {
    padding-left: 14px;
    margin-bottom: 8px;
    position: relative;
    font-size: 14px;
  }

  .py-scenario-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
  }

  /* PROCESS */
  .py-process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .py-process-step {
    text-align: center;
    position: relative;
  }

  .py-process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--border-color);
  }

  .py-process-icon-wrapper {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: 0.3s;
  }

  .py-process-step:hover .py-process-icon-wrapper {
    background: var(--primary-color);
  }

  .py-process-icon {
    width: 35px;
    height: 35px;
  }

  .py-process-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .py-comparison-container {
      grid-template-columns: 1fr;
    }

    .py-scenarios-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {

    /* ✅ Mobile H2 28px */
    .py-section h2 {
      font-size: 28px;
    }

    .py-scenarios-grid {
      grid-template-columns: 1fr;
    }

    .py-process-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .py-process-step:not(:last-child)::after {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .py-process-container {
      grid-template-columns: 1fr;
    }

    .py-table {
      font-size: 13px;
    }
  }
