/* Terms of Use Page Specific Styles */

/* Page Header */
.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to right,
    var(--dark-color),
    var(--secondary-color)
  );
  padding: 80px 0;
}

.page-header::before {
  content: "\f05a"; /* Info icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.03);
  top: -60px;
  right: 5%;
}

.page-header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  margin-top: 10px;
}

.breadcrumb li {
  margin-right: 15px;
}

/* Content Styles */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
}

.terms-content h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.terms-content h3 {
  font-size: 18px;
  margin: 30px 0 15px;
  color: #333;
}

.terms-content p {
  margin-bottom: 15px;
  color: #333;
}

/* Table of Contents */
.table-of-contents {
  margin: 30px 0;
  padding: 20px;
  background: #f9f9f9;
}

.table-of-contents h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.toc-list {
  list-style: decimal;
  padding-left: 20px;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: #333;
  text-decoration: none;
}

.toc-list a:hover {
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  margin-top: 30px;
  padding: 20px;
  border-top: 1px solid #eee;
}

.contact-info p {
  margin-bottom: 5px;
}

/* Remove decorative elements */
.document-stamp,
.terms-content::before,
.terms-content::after,
.terms-content h2::after,
.terms-content h3::before,
.page-header::before {
  display: none;
}

/* Remove animations */
.terms-content,
.terms-content h3 {
  opacity: 1;
  animation: none;
}
