.main-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.terms-container {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  color: var(--main-white, #f8f9fa);
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.terms-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--main-light-color, #df0e9a);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.terms-list {
  list-style-position: inside;
  padding-left: 0;
}

.terms-list li {
  margin-bottom: 1.5rem;
}

.terms-list p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 1.5rem;
  }

  .terms-title {
    font-size: 2rem;
  }
}

.container {
  padding: 1rem 0;
  text-align: left;
}

.back-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--main-light-color, #df0e9a);
  text-decoration: none;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.back-button:hover {
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
}

.terms-point {
  margin-bottom: 1.5rem;
  color: var(--main-light-color, #df0e9a);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

li:has(.terms-point)::marker {
  margin-bottom: 1.5rem;
  color: var(--main-light-color, #df0e9a);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

ul li {
  word-break: break-all;
}