*, *::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 {
        background-color: #E3D4C1;
        padding: 40px 98px;
        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;
      }
      /* ── 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;
      }
      .feature-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .feature-content {
        background-color: #E3D4C1;
        padding: 40px 98px;
        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 {
        background-color: #1c1c1c;
        text-decoration: none;
        color: #fff !important;
        cursor: pointer;
        width: 220px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        box-shadow: -2px 4px 10px #2e2e2e29;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0px;
        margin-top: 30px;
        border-radius: 24px;
        padding: 12px !important;
      }
      .btn:hover {
        background-color: #443434;
        cursor: pointer;
        color: #fff;
        text-decoration: none;
      }
      /* ── 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;
          padding: 25px 25px 50px 25px;
        }
        .feature-content{
          order: 1;
          padding: 25px 25px 50px 25px;
        }
        .feature-img{
          order: 2;
        }
        .contact {
          height: auto;
          padding: 60px 28px;
        }
      }