body {
  background: #0a0a0c;
  font-family: 'Beaufort Pro', serif;
  color: #f0e6d2;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-box {
  background: #121214;
  border: 1px solid #c5a663;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 166, 99, 0.1) 0%, rgba(10, 10, 12, 0) 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #d4cfa4;
}

.legal-box:hover::before {
  opacity: 1;
}

.legal-box h2 {
  font-size: 1.8rem;
  color: #c5a663;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  letter-spacing: 1px;
}

.legal-box p {
  font-size: 1.05rem;
  color: #d4cfa4;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.legal-box p:last-child {
  margin-bottom: 0;
}

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

  .legal-box h2 {
    font-size: 1.5rem;
  }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  left: auto;
  width: auto;
  height: auto;
  padding: 8px 12px;
  margin: 10px;
  background-color: #c5a663;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}
