.container2 {
  max-width: 900px;
  margin: 50px auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
}

h1 {
  text-align: center;
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

ol {
  line-height: 1.7;
}

.terms-list {
  margin-bottom: 20px;
}

.btn-container {
  text-align: center;
  margin-top: 30px;
}

.home-btn {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.home-btn:hover {
  background-color: #059c42;
}
