  /* Checkout Container */
  .checkout-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .checkout-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .checkout-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .checkout-layout {
      display: flex;
      min-height: 600px;
  }

  /* Left Side - Course Information */
  .course-info-section {
      flex: 1;
      background: linear-gradient(to right, #31D36C, #A8EEC1);
      color: white;
      padding: 40px;
      display: flex;
      flex-direction: column;

  }

  .course-info-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: space-between;
  }

  .course-info-main {
      flex: 1;
  }

  .section-title {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 30px 0;
      color: white;
  }

  .course-image-container {
      margin-bottom: 40px;
  }

  .course-image {
      /* width: 100%; */
      /* height: 200px; */
      aspect-ratio: 16 / 9;
      max-width: 100%;
      object-fit: cover;
      border-radius: 12px;
      /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
  }

  .course-title {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 10px 0;
      color: #004D20;
      line-height: 1.3;
  }

  .instructor-info {
      color: #004D20;
      margin: 0 0 30px 0;
      font-size: 16px;
  }

  .instructor-info i {
      margin-right: 8px;
  }

  .course-features {
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  .feature-item {
      display: flex;
      align-items: center;
      color: #004D20;
      margin-bottom: 25px;
      font-size: 14px;
  }

  .feature-item span {
      font-size: 15px;
  }

  .feature-item i {
      margin-right: 10px;
      font-size: 18px;
      color: #004D20;
  }

  .course-description {
      color: #004D20;
      line-height: 1.6;
      margin: 0;
      font-size: 18px;
  }

  .price-section {
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      padding-top: 20px;
      margin-top: 20px;
  }

  .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .price-label {
      color: #004D20;
      font-size: 16px;
  }

  .price-amount {
      text-align: right;
  }

  .original-price {
      color: #004D20;
      text-decoration: line-through;
      margin-right: 10px;
      font-size: 16px;
  }

  .final-price {
      color: #004D20;
      font-weight: 700;
      font-size: 24px;
  }

  /* Right Side - Payment Form */
  .payment-form-section {
      flex: 1;
      padding: 40px;
      background: white;
  }

  .payment-form-content {
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .form-header {
      text-align: center;
      margin-bottom: 30px;
  }

  .form-title {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin: 0 0 8px 0;
  }

  .form-subtitle {
      color: #666;
      margin: 0;
      font-size: 15px;
      font-weight: normal;
  }

  .checkout-form {
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .form-section {
      margin-bottom: 30px;
  }

  .section-heading {
      font-size: 18px;
      font-weight: 700;
      color: #333;
      margin: 0 0 20px 0;
      display: flex;
      align-items: center;
  }



  .form-group {
      margin-bottom: 20px;
  }

  .form-label {
      display: block;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
      font-size: 14px;
  }

  .required {
      color: #e74c3c;
  }

  .form-input {
      width: 100%;
      padding: 15px 16px;
      font-size: 16px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      background: white;
      color: #333;
      transition: all 0.3s ease;
      box-sizing: border-box;
  }

  .form-input:focus {
      outline: none;
      border-color: #31D36C;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  .form-input.error {
      border-color: #e74c3c;
  }

  .form-input::placeholder {
      color: #999;
  }

  .error-message {
      color: #e74c3c;
      font-size: 14px;
      margin-top: 5px;
  }

  /* Payment Summary */
  .payment-summary {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 30px;
  }

  .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
  }

  .summary-item {
      color: #666;
      font-size: 14px;
      width: 70%;
  }

  .summary-price {
      font-weight: 600;
      color: #333;
      font-size: 14px;
  }

  .discount-row {
      margin-bottom: 12px;
  }

  .discount-label {
      color: #27ae60;
      font-size: 14px;
      display: flex;
      align-items: center;
  }

  .discount-label i {
      margin-right: 5px;
  }

  .discount-amount {
      color: #27ae60;
      font-weight: 600;
      font-size: 14px;
  }

  .summary-divider {
      height: 1px;
      background: #dee2e6;
      margin: 15px 0;
  }

  .total-row {
      margin-bottom: 0;
  }

  .total-label {
      font-weight: 700;
      color: #333;
      font-size: 18px;
  }

  .total-amount {
      font-weight: 700;
      color: #004D20;
      font-size: 20px;
  }

  /* Pay Button */
  .pay-button {
      /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
      background: linear-gradient(135deg, #31D36C 0%, #11cc52 100%);
      color: #004D20;
      border: none;
      padding: 18px 24px;
      font-size: 18px;
      font-weight: 700;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-bottom: 15px;
  }

  .pay-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }

  .pay-button i {
      margin-right: 10px;
  }

  /* Security Notice */
  .security-notice {
      text-align: center;
      color: #666;
      font-size: 14px;
  }

  .security-notice i {
      margin-right: 5px;
  }

  /* Responsive Design */
  @media (max-width: 991px) {
      .checkout-layout {
          flex-direction: column;
      }

      .course-info-section {
          order: 2;
      }

      .payment-form-section {
          order: 1;
      }

      .course-info-section,
      .payment-form-section {
          padding: 30px 20px;
      }
  }

  @media (max-width: 768px) {
      .padding-global-3 {
          padding-left: 0 !important;
          padding-right: 0 !important;
      }

      .checkout-container {
          padding: 0 15px;
      }

      .course-info-section,
      .payment-form-section {
          padding: 25px 15px;
      }

      .section-title {
          font-size: 24px;
      }

      .course-title {
          font-size: 20px;
      }

      .form-title {
          font-size: 20px;
      }

      .pay-button {
          padding: 16px 20px;
          font-size: 16px;
      }
  }

  /* Customer Information Section */
  .customer-info {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
  }

  .info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid #e9ecef;
  }

  .info-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
  }

  .info-label {
      font-weight: 600;
      color: #495057;
      font-size: 14px;
  }

  .info-value {
      color: #212529;
      font-size: 14px;
  }

  /* Redirect Message Styles */
  .redirect-message {
      text-align: center;
      padding: 40px 20px;
  }

  .loading-spinner {
      font-size: 48px;
      color: #31D36C;
      margin-bottom: 20px;
  }

  .redirect-message p {
      margin-bottom: 15px;
      color: #495057;
      font-size: 16px;
  }

  .amount-display {
      font-size: 20px !important;
      font-weight: 700;
      color: #004D20 !important;
      margin-top: 20px !important;
  }

  /* Payment Method Selection Styles */
  .payment-methods {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
      margin-top: 15px;
      width: 100%!important;
  }

  .payment-method-option {
      position: relative;
      width: 100%!important;
  }

  .payment-method-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
  }

  .payment-method-label {
      display: block;
      padding: 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fff;
  }

  .payment-method-label:hover {
      border-color: #007bff;
      background: #f8f9fa;
  }

  .payment-method-option input[type="radio"]:checked+.payment-method-label {
      border-color: #007bff;
      background: #e7f3ff;
      box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
  }

  .payment-method-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }

  .payment-method-content i {
      font-size: 24px;
      color: #007bff;
  }

  .payment-method-content span {
      font-weight: 600;
      color: #333;
  }

  .payment-method-option input[type="radio"]:checked+.payment-method-label .payment-method-content i {
      color: #0056b3;
  }

  .payment-method-option input[type="radio"]:checked+.payment-method-label .payment-method-content span {
      color: #0056b3;
  }