.az-list {
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: left;
}
.alphabetical-terms {
  margin: 50px 0;
}
.alphabet-nav-label { margin-bottom: 10px; }
.alphabet-nav-label span {
    text-transform: lowercase;
    box-shadow: inset 0 -8px 0 rgba(0, 127, 99, 0.15);
}

.alphabet-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 20px;
    padding: 0;
}
.alphabet-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #eeece9;
    font-size: 13px;
    transition: .2s;
}
.alphabet-nav li a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    width: 100%;
    text-align: center;
}
.alphabet-nav li:not(.disabled):hover { background: #303030; }
.alphabet-nav li:hover a { color: #fff; }
.alphabet-nav li.disabled { color: #ccc; }

.single-letter { margin-top: 50px; }
.single-letter span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    font-weight: 700;
    font-size: 20px;
    background: #303030;
    color: #fff;
}

ul.terms-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: -1px 0 20px;
    padding: 0;
    list-style: none;
}
@media (max-width: 1024px) {
  ul.terms-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  ul.terms-list { grid-template-columns: 1fr; }
}
ul.terms-list li { border-top: 1px solid #303030; }
ul.terms-list li a { display: inline-block; width: 100%; padding-top: 10px; }

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #303030;
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}
#back-to-top.show { opacity: 1; pointer-events: auto; }
