body, html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'Quicksand', 'Trebuchet MS', sans-serif;
      background-color: #0d1b2a; /* Navy blue background */
      color: #e8e8e8; /* Subtle lilac text */
    }
    .header {
      background-image: url('/untitled.png');
      background-size: cover;
      background-position: center;
      width: 100%;
      box-sizing: border-box;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      border-top: 15px solid #0d1b2a;
      border-bottom: 3px solid #a02b93;
      position: relative;
    }
    .logo {
      margin-right: 12px;
      height: 130px;
      width: auto;
      position: relative;
      top: 8px;
    }
    .nav-links {
      display: flex;
      gap: 40px;
    }
    .nav-links a {
      color: #e8e8e8;
      text-decoration: none;
      font-size: 28px;
      font-weight: bold;
      position: relative;
    }
    .nav-links a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #e8e8e8;
      transition: width 0.3s ease;
    }
    .nav-links a:hover:after {
      width: 100%;
    }

    /* Content styling */
    .content {
      width: 100%;
      margin: 0;
      padding: 60px 40px 80px;
      background-color: #0e2841;
      box-sizing: border-box;
      min-height: calc(100vh - 100px - 77px);
      position: relative;
      overflow: hidden;
    }

    /* Background elements */
    .bg-element {
      position: absolute;
      opacity: 0.03;
      pointer-events: none;
      z-index: 0;
      color: #a02b93;
    }
    .bg-element.lock {
      top: 8%;
      right: 4%;
      font-size: 240px;
      transform: rotate(15deg);
    }
    .bg-element.shield {
      bottom: 10%;
      left: 3%;
      font-size: 200px;
      transform: rotate(-12deg);
    }

    .privacy-hero {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 50px 20px;
      margin-bottom: 70px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(18, 48, 73, 0.4) 0%, rgba(13, 38, 60, 0.4) 100%);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(160, 43, 147, 0.1);
      animation: fadeIn 1.2s ease-out;
    }
    .privacy-hero h1 {
      font-size: 56px;
      margin: 0 0 20px 0;
      color: #ffffff;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    .last-updated {
      font-size: 20px;
      color: #a8b6c4;
      margin: 0;
    }

    .policy-body {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      margin: 0 auto;
    }
    .policy-section {
      background-color: #123049;
      border-radius: 10px;
      padding: 35px 40px;
      margin-bottom: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(160, 43, 147, 0.2);
    }
    .policy-section h2 {
      font-size: 28px;
      margin: 0 0 18px 0;
      color: #ffffff;
    }
    .policy-section p {
      font-size: 19px;
      line-height: 1.7;
      margin: 0 0 15px 0;
    }
    .policy-section p:last-child {
      margin-bottom: 0;
    }
    .policy-section ul {
      font-size: 19px;
      line-height: 1.7;
      padding-left: 25px;
      margin: 0 0 15px 0;
    }
    .policy-section li {
      margin-bottom: 10px;
    }
    .policy-section a {
      color: #ffffff;
      text-decoration: underline;
    }

    .footer {
      border-top: 3px solid #a02b93;
      text-align: center;
      padding: 20px;
      background-color: #0d1b2a;
      color: #e8e8e8;
      width: 100%;
      box-sizing: border-box;
      font-size: 16px;
    }
    .footer a {
      color: #ffffff;
      text-decoration: none;
      margin: 0 10px;
      font-size: 16px;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .contact-email {
      margin-top: 10px;
      font-size: 16px;
    }

    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #e97132;
      border-radius: 5px;
    }
    ::-webkit-scrollbar-track {
      background-color: rgba(13, 27, 42, 0.2);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .privacy-hero h1 {
        font-size: 36px;
      }
      .policy-section {
        padding: 25px 20px;
      }
      .nav-links {
        gap: 20px;
      }
      .nav-links a {
        font-size: 20px;
      }
    }


/* --- Selector de idioma (agregado con la version bilingue) --- */
.nav-links .lang-switch {
  border: 1px solid rgba(232, 232, 232, 0.45);
  border-radius: 5px;
  padding: 2px 11px;
  font-size: 20px;
  letter-spacing: 1px;
  align-self: center;
}
.nav-links .lang-switch:after { display: none; }
.nav-links .lang-switch:hover {
  background-color: rgba(232, 232, 232, 0.15);
}
