/* terms.html — Terms of Service page styles */

/* Narrow container for legal pages */
body {
  line-height: 1.7;
}
.container {
  max-width: 900px;
}

/* Legal page layout */
main {
  padding: 60px 0;
}
.content-box {
  background: white;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Legal typography */
h1 {
  color: #1d3557;
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.last-updated {
  color: #888;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
h2:first-of-type {
  border-top: none;
  margin-top: 24px;
}
h3 {
  color: #333;
  font-size: 1.15rem;
  margin: 24px 0 12px;
}
p {
  margin-bottom: 16px;
  color: #444;
}
strong {
  color: #1a1a1a;
}
ul, ol {
  margin: 16px 0 16px 24px;
  color: #444;
}
li {
  margin-bottom: 8px;
}

/* Highlight box (warning/yellow theme) */
.highlight-box {
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.highlight-box h4 {
  color: #e65100;
  margin-bottom: 8px;
}
.highlight-box p:last-child {
  margin: 0;
}

/* Alternate highlight box (softer yellow for platform disclaimer) */
.highlight-box--alt {
  background: #fef9e7;
  border-color: #f9c74f;
}

/* Info box (gray/blue) */
.info-box {
  background: #e8eaed;
  border-left: 4px solid #1d3557;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.info-box h4 {
  color: #1d3557;
  margin-bottom: 8px;
}

/* Contact box */
.contact-box {
  background: linear-gradient(135deg, #e8eaed 0%, #e0f7fa 100%);
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}
.contact-box h3 {
  color: #1d3557;
  margin-bottom: 16px;
}
.contact-box a {
  color: #1d3557;
  font-weight: 600;
}
.contact-box .btn-primary {
  color: white;
  display: inline-block;
  background: #1d3557;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
}
.contact-box .btn-primary:hover {
  background: #15293e;
}

/* Terms acknowledgment box */
.terms-ack {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid #eee;
  text-align: center;
  color: #888;
}

/* Dark footer override */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0;
  margin-top: 60px;
  border-top: none;
}

/* Mobile nav: dropdown (not full-screen overlay) */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    justify-content: flex-start;
  }
  .nav-links a {
    margin-left: 0;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    width: auto;
  }
  .content-box {
    padding: 28px 20px;
  }
  h1 {
    font-size: 1.8rem;
  }
}
