  :root {
      --primary-color: #2ECC71;
      --text-color: #333;
      --bg-color: #f9f9f9;
  }
  body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      margin: 0;
      padding: 0;
  }
  .container {
      max-width: 800px;
      margin: 40px auto;
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  header {
      border-bottom: 2px solid #eee;
      margin-bottom: 30px;
      padding-bottom: 10px;
  }
  h1 { font-size: 1.8rem; color: #000; margin-bottom: 5px; }
  .last-update { font-size: 0.9rem; color: #888; }
  h2 { font-size: 1.3rem; margin-top: 30px; color: var(--primary-color); }
  
  
  p { margin-bottom: 15px; }
  
  .politicas-privacidad-link {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    align-content: center;
  }


  .material-symbols-outlined {
    margin-top: 9px;
    margin-right: 5px;
    color: #1100ff;
  }
  

  .privacidad {
    display: flex;
      margin-top: 30px;
      margin-bottom: 20px;
      text-decoration: underline;
      color: #1100ff;
      font-weight: 600;
      transition: 0.2s;
  }


  .back-link {
      display: inline-block;
      margin-top: 30px;
      margin-bottom: 20px;
      text-decoration: none;
      color: #f33;
      font-weight: 600;
      transition: 0.2s;
  }
  .back-link:hover { color: #f00; }
  @media (max-width: 600px) {
      .container {
          margin: 0;
          padding: 20px;
          border-radius: 0;
      }
  }