/* Legal Content Styles */
.legal-content {
  background-color: var(--primary-color);
  position: relative;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 168, 255, 0.05) 0%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.section-block {
  margin-bottom: 40px;
}

.section-block h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.section-block h3 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 25px;
}

.section-block p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.section-block ul,
.section-block ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.section-block ul li,
.section-block ol li {
  margin-bottom: 10px;
  position: relative;
}

.section-block ul li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.section-block ol {
  list-style-type: decimal;
}

.section-block a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-block h2 {
    font-size: 22px;
  }
  
  .section-block h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .section-block h2 {
    font-size: 20px;
  }
  
  .section-block h3 {
    font-size: 16px;
  }
}