/* ============================================
   LEGAL PAGES - BEAUTIFUL DESIGN
   Terms, Privacy, etc.
   ============================================ */

/* Legal Content Container */
.tsoka-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5% 100px;
}

.tsoka-legal-content__inner {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Last Updated Badge */
.tsoka-legal-content__updated {
  display: inline-block;
  background: #f8f9fa;
  color: #6c757d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 40px;
  border: 1px solid #e9ecef;
}

/* Legal Sections */
.tsoka-legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e9ecef;
}

.tsoka-legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Section Titles */
.tsoka-legal-section__title {
  font-family: var(--font-elegant);
  font-size: 1.75rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Paragraphs */
.tsoka-legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 20px;
}

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

/* Lists */
.tsoka-legal-section ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.tsoka-legal-section ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
}

.tsoka-legal-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--tsoka-gold);
  font-weight: 600;
  font-size: 1.2rem;
}

.tsoka-legal-section ul li strong {
  color: #222;
  font-weight: 600;
}

/* Links */
.tsoka-legal-section a {
  color: var(--tsoka-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.tsoka-legal-section a:hover {
  border-bottom-color: var(--tsoka-gold);
}

/* Table of Contents */
.tsoka-legal-toc {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}

.tsoka-legal-toc__title {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.tsoka-legal-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tsoka-legal-toc__list li {
  margin-bottom: 12px;
}

.tsoka-legal-toc__list a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 0;
}

.tsoka-legal-toc__list a:hover {
  color: var(--tsoka-gold);
  padding-left: 8px;
}

/* Highlight Boxes */
.tsoka-legal-highlight {
  background: #fff9e6;
  border-left: 4px solid var(--tsoka-gold);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
}

.tsoka-legal-highlight p {
  margin: 0;
  color: #856404;
}

.tsoka-legal-highlight strong {
  color: #856404;
}

/* Warning Box */
.tsoka-legal-warning {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
}

.tsoka-legal-warning p {
  margin: 0;
  color: #856404;
}

/* Info Box */
.tsoka-legal-info {
  background: #d1ecf1;
  border-left: 4px solid #17a2b8;
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
}

.tsoka-legal-info p {
  margin: 0;
  color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tsoka-legal-content {
    padding: 60px 5% 80px;
  }

  .tsoka-legal-content__inner {
    padding: 40px 32px;
    border-radius: 16px;
  }

  .tsoka-legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .tsoka-legal-section__title {
    font-size: 1.5rem;
  }

  .tsoka-legal-section p,
  .tsoka-legal-section ul li {
    font-size: 0.938rem;
  }

  .tsoka-legal-toc {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .tsoka-legal-content__inner {
    padding: 32px 24px;
  }

  .tsoka-legal-section__title {
    font-size: 1.375rem;
  }
}
