*, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      /* ── 80% centered page wrapper ── */
      .page {
        margin: 40px auto;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      /* ── Hero ── */
      .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 0;
        min-height: 500px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 5px;
        overflow: hidden;
        margin: 0 auto 120px;
      }
      .hero-text {
        padding: 8% 8% 8% 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .hero-heading {
        margin-bottom: 24px;
      }
      .hero-body p {
      }
      .hero-price {
        font-weight: 700;
        margin: 30px 0px;
      }
      .hero-link {
      }
      .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 5px;
      }
      /* ── Feature sections ── */
      .feature {
        width: 100%;
        box-sizing: border-box;
        border-radius: 5px;
        overflow: hidden;
        margin: 0 auto 120px;
      }
      .feature-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        gap: 4%;
      }
      .feature-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 5px;
      }
      .feature-content {
        padding: 8% 8% 8% 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .feature-heading {
      }
      .feature-price {
        font-weight: 700;
        margin-bottom: 30px;
      }
      .feature-para {
        margin-bottom: 8%;
      }
      .feature-para em {
        font-style: italic;
      }
      .feature-label {
        font-weight: 700;
        margin-bottom: 2%;
      }
      .feature-list {
        list-style: none;
        margin-bottom: 25px;
      }
      .feature-list li {
        line-height: 2;
      }
      /* ── Button ── */
      .btn {
        display: flex;
        width: 49%;
        margin: 10px 0 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none !important;
        padding: 14px 20px;
        border-radius: 5px;
        background-color: #0085b7;
        color: #fff;
      }
      .btn:hover {
        background-color: #004f6d;
        cursor: pointer;
        font-weight: normal;
      }
      /* ── Contact CTA ── */
      .contact {
        height: 500px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
      }
      .contact-heading {
      }
      .contact-text {
        max-width: 500px;
        margin-bottom: 40px;
      }
      /* ── Responsive ── */
      @media (max-width: 960px) {
        .page {
          margin: 20px auto;
        }
        .hero, .feature-split {
          grid-template-columns: 1fr;
          height: auto;
        }
        .hero-text{
          padding: 0 0 8% 0;
        }
        .feature-content{
          order: 1;
        }
        .feature-img{
          order: 2;
        }
        .contact {
          height: auto;
          padding: 60px 28px;
        }
      }