/* ================================
   Legal pages (cookies, privacy, etc)
================================ */

.section .container .card {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
 border-radius: 20px;
}

/* títulos legales */

.section .container .card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* primer título sin margen arriba */
.section .container .card h2:first-child {
  margin-top: 0;
}

/* párrafos legales */
.section .container .card p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}

/* listas legales */
.section .container .card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.section .container .card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* enlaces */
.section .container .card a {
  color: #6B58F0;
  text-decoration: none;
}

.section .container .card a:hover {
  text-decoration: underline;
}

/* responsive */
@media (max-width: 768px) {
  .section .container .card {
    padding: 28px;
  }


  .section .container .card h2 {
    font-size: 22px;
  }
}