
    /* Global reset — no margins, no padding, pure white */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;      /* pure white */
      padding: 0;              /* no body padding — edge to edge */
    }

    .feature-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 100%;          /* full width, no constraint */
      margin: 0;               /* no auto margin */
      background: #ffffff;
      border-radius: 0;
      box-shadow: none;
      padding: 50px 0;          /* only vertical padding, no left/right spacing */
      gap: 0;                  /* remove gap between columns — flush */
    }

    .feature-col {
      flex: 1;
      padding: 0;              /* no inner padding */
    }

    .feature-col h2 {
      color: #FF8C5A;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .feature-col p {
      color: #555;
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
    }

    .feature-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .feature-col ul li {
      color: #555;
      font-size: 15px;
      line-height: 2.2;
    }

    .feature-center {
      flex: 0 0 auto;
      text-align: center;
      padding: 0;              /* no padding */
    }

    .feature-center img {
      max-width: 340px;
      width: 100%;
      height: auto;
      display: block;          /* remove extra space below image */
      margin: 0 auto;          /* keep centered within its column */
    }

    .text-right {
      text-align: right;
    }

    /* Responsive: stack on smaller screens, still edge‑to‑edge */
    @media (max-width: 900px) {
      .feature-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;        /* only vertical, no horizontal spacing */
        gap: 0;                /* flush stacking */
      }
      .text-right {
        text-align: center;
      }
      .feature-center {
        order: -1;
      }
      .feature-center img {
        max-width: 260px;
      }
    }
  