body {
    font-size: var(--body);
    font-family: "Red Hat Display", sans-serif;
    background-color: var(--pale-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 3.125rem 1.5625rem;
  }
  
  main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background-color: var(--card-background);
    width: 60rem;
    max-width: 100%;
    border-radius: 1.5625rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .left-section,
  .right-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  
  .left-section {
    flex: 1;
    border-left: 1px solid var(--very-pale-blue);
  }
  
  .right-section {
    flex: 1;
  }
  
  .img-card {
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .card-title {
    padding-bottom: 1rem;
    margin: 0;
  }
  
  .sbscr-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem;
    width: 100%;
    background-color: var(--very-pale-blue);
    border-radius: 0.6875rem;
    margin-bottom: 2rem;
  }
  
  .sbscr-offer {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .offer-plan {
    width: 100%;
    padding: 1rem;
    background-color: var(--card-background);
    border: 1px solid var(--pale-blue);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .plan {
    color: var(--dark-blue);
    font-weight: var(--bolder-weight);
    margin-bottom: 0.5rem;
  }
  
  .price {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    font-weight: var(--bold-weight);
  }
  
  .price-label {
    color: var(--desaturated-blue);
  }
  
  .price-value {
    color: var(--dark-blue);
  }
  
  .old-price .price-value {
    text-decoration: line-through;
    color: var(--desaturated-blue);
  }
  
  .subtotal .price-value,
  .total .price-value {
    color: var(--bright-blue);
    font-weight: var(--bolder-weight);
  }
  
  .input-label {
    display: block;
    font-weight: var(--bold-weight);
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .styled-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--desaturated-blue);
    border-radius: 0.5rem;
    font-size: var(--body);
    margin-bottom: 1rem;
  }
  
  .styled-input:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
  }
  
  .payment-button {
    font-weight: var(--bolder-weight);
    background-color: var(--bright-blue);
    border-radius: 0.625rem;
    border-color: transparent;
    font-size: var(--body);
    box-shadow: var(--pale-blue) 0rem 1.25rem 1.25rem 0rem;
    margin-bottom: 0.9375rem;
    width: 100%;
    height: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .payment-button .btn1 {
    background-color: transparent;
    border-color: transparent;
    color: white;
    line-height: 100%;
    font-weight: var(--bold-weight);
  }
  
  @media (max-width: 768px) {
    main {
      flex-direction: column;
    }
  
    .right-section {
      order: 1; 
      padding-left: 0;
      padding-top: 2rem;
      padding-right:inherit;
      border-top: 1px solid var(--very-pale-blue);
      width: 100%;
    }
  
    .left-section {
      order: 2; 
      width: 100%;
      border-right: none;
    }
  }

  .price .old-price {
    text-decoration: line-through;
}

 .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
        }
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .modal-title {
            color: red;
            font-size: 24px;
            margin-bottom: 10px;
        }
  