.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    font-family: Arial, sans-serif;
    border-radius: 6px;
  }

  .info-section {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #0d6efd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #fff;
    padding-left: 40px;
  }

  .info-section h1,
  .info-section h2 {
    color: #fff;
  }

  .calculator-section {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .calculator-section h1 {
    text-align: center;
  }

  .calculator-section label {
    display: block;
    margin-bottom: 50px; /* Add some space here */
    margin-top: 20px;
  }

  h1,
  h2 {
    color: #333;
  }

  .slider {
    width: 100%;
    margin: 20px 0;
    position: relative;
  }

  .bubble {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d6efd;
    color: white;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
  }

  .step-labels {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
  }

  .step-labels span {
    font-size: 14px;
    color: #666;
  }

  .results {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
  }

  .results p {
    margin: 10px 0;
    font-size: 16px;
  }

  .apply-button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
    cursor: pointer;
  }

  .apply-button:hover {
    background-color: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
  }

  .tm-ccl {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
  }

  .CCL {
    font-size: 24px;
    text-decoration: none;
    color: lightblue;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
  }

  .disclaimer p {
    margin: 2px;
    font-size: 12px;
  }

  /* Media Queries for Mobile Responsiveness */
  @media (min-width: 768px) {
    .slider-container {
      flex-direction: row;
      justify-content: space-between;
      padding: 40px;
    }

    .info-section {
      flex: 0.4;
      margin-right: 20px;
    }

    .calculator-section {
      flex: 0.6;
    }
  }

  @media (max-width: 767px) {
    .slider-container {
      padding: 20px;
    }

    .bubble {
      top: -25px;
      font-size: 12px;
      padding: 4px 8px;
    }

    .apply-button {
      font-size: 16px;
      padding: 12px;
    }

    .results p {
      font-size: 14px;
    }
  }

  @media (max-width: 767px) {
    .slider-container {
      height: auto; /* Ensure the container grows with content */