.page-container {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #f1f2f4;
  background-color: #fff;
  border-left: none;
  padding: 30px;

  .page-title {
    font-weight: bold;
    color: #758db9;
    text-align: center;
    margin-bottom: 30px;
  }

  .legislation-image {
    img {
      border-radius: 10px;
    }
  }

  .legislations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;

    .legislation-item {
      background-color: #f7f8f9;
      padding: 15px 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #f1f2f4;
      color: #050f21;
      line-height: 20px;

      h6 {
        margin: 0;
        line-height: 25px;
      }
    }
  }
}

@media only screen and (max-width: 600px) {
  h6 {
    font-size: 14px;
  }
}
