 html, body {
    height: 100%;
    margin: 0;
    }
    
    .main-container {
      display: flex;
      height: 100vh;
      padding: 30px;
      gap: 20px;
    }
    .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    }
     main {
     flex: 1;}
    .left-column {
      position: fixed;
      width: 30%;
      background: #fff;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      flex-shrink: 0;
      position: sticky;
      top: 0;
      height: fit-content;
    }

    .right-column {
      width: 70%;
      overflow-y: auto;
      padding-right: 15px;
      padding-left: 15px;
    }

    .section-box {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 0 12px rgba(0,0,0,0.05);
    }

    .section-title-heading {
      border-left: 4px solid #5b8c51;
      padding-left: 12px;
      font-weight: 600;
      color: #5b8c51;
      margin-bottom: 20px;
    }

    /* .apply-btn {
      background-color: #0d6efd;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      display: inline-block;
      text-decoration: none;
      margin-top: 20px;
    } */

    /* Scrollbar styling (optional) */
    .right-column::-webkit-scrollbar {
      width: 6px;
    }
    .right-column::-webkit-scrollbar-thumb {
      background-color: #ced4da;
      border-radius: 4px;
    }
    @media (max-width: 991px) {
  .main-container {
    flex-direction: column;
    padding: 15px;
  }

  .left-column {
    position: relative;
    width: 100%;
    top: auto;
    height: auto;
    margin-bottom: 20px;
  }

  .right-column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* .footer {
  width: 100%;
  color: #ccc;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #70ab15;
  text-decoration: underline;
}

.copyright {
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer .row > div {
    text-align: center;
  }

  .footer .d-flex {
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .copyright .row {
    flex-direction: column;
    gap: 10px;
  }
} */
