/* ================================
   RetroSuit — Terms Page CSS
   ================================ */

   :root {
    --bg-dark: #0e0e12;
    --bg-card: #121212;
    --primary: #4f8cff;
    --text-main: #ffffff;
    --text-secondary: #cccccc;
    --radius: 14px;
    --shadow-light: 0 4px 14px rgba(0, 0, 0, 0.3);
    --line-height: 1.7;
    --section-gap: 3rem;
  }
  
  /* Base */
  body {
    font-family: "Poppins", sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: var(--line-height);
  }
  
  /* Section */
  section {
    padding: var(--section-gap) 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Hero */
  .features-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(140deg, rgba(79,140,255,0.12), transparent 70%);
    border-radius: var(--radius);
    margin-bottom: 3rem;
  }
  
  .features-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px rgba(79,140,255,0.4);
  }
  
  .features-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
  }
  
  /* Terms Content */
  .terms-section {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
  }
  
  .terms-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.75rem;
  }
  
  .terms-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.35rem;
  }
  
  .terms-section p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
  }
  
  .terms-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .terms-section ul li {
    margin-bottom: 0.75rem;
  }
  
  /* Nested Lists */
  .terms-section ul ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .terms-section ul ul li {
    margin-bottom: 0.5rem;
    list-style-type: circle;
  }
  
  /* Links */
  .terms-section a {
    color: var(--primary);
    text-decoration: underline;
  }
  
  .terms-section a:hover {
    color: #6aa2ff;
    text-decoration: none;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .features-hero h1 {
      font-size: 2rem;
    }
  
    .terms-section h2 {
      font-size: 1.5rem;
    }
  
    .terms-section h3 {
      font-size: 1.25rem;
    }
  }
  