.business-policy {
  padding: 30px 12%;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}
.policy-meta {
  gap: 21px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 45px;
}
.toc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 15px;
  margin-bottom: 45px;
}
.toc-card {
  background: linear-gradient(
  45deg, rgba(33, 33, 33, 0.75), rgba(0, 0, 0, 0.75));
  padding: 15px 20px;
  font-weight: 300;
  font-size: 1em;
  color: #ffffff;
  border-left: 3px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.toc-card:hover {
  color: #304ffe;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  background: #ffffff;
}
.toc-number {
  font-weight: 500;
  margin-right: 12px;
}
.cards-subitems {
  display: grid;
  gap: 12px;
  margin: 21px 0;
}
.subitem-card {
  border-left: 5px solid #eeeeee;
  padding: 12px 21px;
  font-weight: 300;
  color: #eeeeee;
}
.policy-content article {
  margin-bottom: 45px;
}
.policy-content h2 {
  font-size: 2.15rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
  text-align: left;
  color: #ffffff;
}
.policy-content h3 {
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: left;
  justify-items: left;
}
.policy-content p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.45;
}
.doc-button {
    position: fixed;
    bottom: 21px;
    right: 21px;
    z-index: 9999;
    display: flex;
    border: 1.75px solid #303030;
    align-items: center;
    gap: 12px;
    background:#ffffff;
    color: #304ffe;
    padding: 12px 21px;
    border-radius: 12px;
    box-shadow: 0 9px 15.75px rgba(0,0,0,0.1);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}
.doc-button i {
    font-size: 1.15rem;
}
.doc-button:hover {
    background:#000000;
    box-shadow: 0 9px 15.75px rgba(0,0,0,0.3);
    color: #304ffe;
}    