/* ===== WiTech Canada — Terms of Use Page Styles ===== */

:root {
    --bg: #f7fbff;
    --card: #ffffff;
    --accent: #1a74e2;
    --muted: #5b7082;
    --text: #0d1b2a;
    --radius: 12px;
    --max-width: 1100px;
  }
  .wrap {
    margin-top: 140px !important; /* move EVERYTHING down */
  }
  
  /* Global page spacing */
  body {
    background: linear-gradient(180deg, var(--bg), #fbfeff);
    font-family: Inter, "Segoe UI", system-ui, Arial;
    color: var(--text);
    margin: 0;
    padding-top: 6rem; /* Keeps nav clear */
    line-height: 1.6;
  }
  
  /* Page wrapper */
  .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  /* ========== Page Header ========== */
  .terms-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .terms-header h1 {
    font-family: "Orbitron", Inter, sans-serif;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    letter-spacing: 0.03em;
    color: var(--text);
  }
  
  .terms-header p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 850px;
    margin: 0 auto;
  }
  
  /* ========== Main Terms Card ========== */
  .card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(10, 30, 60, 0.06);
    border: 1px solid rgba(15, 60, 120, 0.05);
  }
  
  /* Section styling */
  .section {
    margin-bottom: 1.8rem;
  }
  
  .section h2 {
    color: var(--accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 0.7rem 0;
    font-weight: 700;
  }
  
  .section p,
  .section li {
    color: var(--muted);
    font-size: 1rem;
  }
  
  /* Bullet list */
  ul.terms-list {
    padding-left: 1.3rem;
  }
  
  ul.terms-list li {
    margin-bottom: 0.6rem;
  }
  
  /* ========== Note Box ========== */
  .note {
    background: linear-gradient(180deg, #f5fbff, #eef8ff);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(26, 116, 226, 0.15);
    color: var(--muted);
    margin: 1.5rem 0;
  }
  
  /* ========== Bottom Button ========== */
  .right {
    margin-top: 2rem;
    text-align: right;
  }
  
  .right a {
    background: var(--accent);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
  }
  
  .right a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 116, 226, 0.18);
  }
  
  /* =========== Responsive =========== */
  @media (max-width: 720px) {
    .card {
      padding: 1.5rem;
    }
  
    .terms-header h1 {
      font-size: 1.55rem;
    }
  
    .section h2 {
      font-size: 1rem;
    }
  
    .right {
      text-align: left;
      margin-top: 1.5rem;
    }
  }
  