/* styles/about.css */

.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #1a1a1a;
  color: #ffe4c4;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.about-page .back-container {
  text-align: left;
  margin-bottom: 16px;
}

.about-page .back-button {
  background: transparent;
  border: none;
  color: #ffe4c4;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}

.about-page .back-button:hover {
  opacity: 0.8;
}

.about-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: #ffe4c4;
}

.about-page .subtitle {
  font-size: 16px;
  text-align: center;
  color: #ccc;
  margin-bottom: 24px;
  font-style: italic;
}

.about-content {
  background: #2a2a2a;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.about-content p {
  margin-bottom: 12px;
  color: #e0e0e0;
}

.about-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #ffe4c4;
  border-bottom: 2px solid #444;
  padding-bottom: 8px;
}

.about-content h2:first-of-type {
  margin-top: 16px;
}

.about-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffe4c4;
  margin-top: 20px;
  margin-bottom: 12px;
}

.about-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.about-content li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

.about-content a {
  color: #88ccff;
  text-decoration: none;
  transition: color 0.2s;
}

.about-content a:hover {
  color: #66aaff;
  text-decoration: underline;
}

.about-content strong {
  color: #ffe4c4;
  font-weight: 600;
}

.legal-doc {
  margin: 24px 0;
  padding: 16px;
  background: #1f1f1f;
  border-radius: 8px;
  border-left: 4px solid #ffe4c4;
}

.doc-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #333;
  color: #ffe4c4;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #555;
}

.doc-link:hover {
  background: #444;
  border-color: #777;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.back-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 24px;
  background: #333;
  color: #ffe4c4;
  border: 2px solid #555;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.back-btn:hover {
  background: #444;
  border-color: #777;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.back-btn:active {
  transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-page {
    padding: 15px;
  }

  .about-page h1 {
    font-size: 24px;
  }

  .about-content {
    padding: 20px;
  }

  .about-content h2 {
    font-size: 18px;
  }

  .about-content h3 {
    font-size: 16px;
  }

  .back-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
