/* Legal Pages Styles */
.legal-section {
  padding: 10rem 3rem 6rem;
  background-color: var(--color-black);
  min-height: 100vh;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-content {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.7) 0%, rgba(10, 10, 15, 0.9) 100%);
  padding: 3rem;
  border-radius: 5px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  margin-top: 3rem;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.legal-date {
  margin-bottom: 2rem;
  color: var(--color-muted);
  font-style: italic;
}

.legal-text h3 {
  color: var(--color-gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-text p,
.legal-text ul,
.legal-text address {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-text ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-text ul li {
  margin-bottom: 0.5rem;
}

.legal-text strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.legal-text address {
  font-style: normal;
  padding: 1rem;
  border-left: 3px solid var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .legal-section {
    padding: 8rem 2rem 4rem;
  }
  
  .legal-content {
    padding: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .legal-section {
    padding: 7rem 1.5rem 3rem;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
}