 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #3498db;
      --secondary-color: #2c3e50;
      --accent-color: #2980b9;
      --text-color: #333;
      --light-bg: rgba(245, 245, 245, 0.85);
      --white: #ffffff;
      --shadow: 0 3px 10px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
      --boton-color: #3498db00;
      --title-font: 'Georgia', serif;
      --text-font: 'Havana', sans-serif;
    }

    body {
      position: relative;
      min-height: 100vh;
      background-color: transparent;
      margin: 0;
      padding: 0;
      z-index: 0;
      -webkit-text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
      font-family: var(--text-font);
      color: var(--text-color);
      line-height: 1.6;
    }

    #animatedBackground {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }

    .content-overlay {
      position: relative;
      z-index: 1;
      background-color: transparent;
    }

    /* Header styles */
    .privacy-header {
      background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
      color: white;
      padding: 80px 20px 60px;
      text-align: center;
      margin-bottom: 40px;
    }

    .privacy-header h1 {
      font-family: var(--title-font);
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .privacy-header p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Main content container */
    .privacy-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 30px 60px;
      background-color: var(--light-bg);
      backdrop-filter: blur(5px);
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    /* Section styles */
    .privacy-section {
      margin-bottom: 40px;
      padding: 30px;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 8px;
      border-left: 4px solid var(--primary-color);
    }

    .privacy-section h2 {
      font-family: var(--title-font);
      color: var(--secondary-color);
      margin-bottom: 20px;
      font-size: 1.8rem;
      position: relative;
      padding-bottom: 10px;
    }

    .privacy-section h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .privacy-section p, .privacy-section li {
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .privacy-section ul {
      padding-left: 30px;
    }

    .privacy-section li {
      margin-bottom: 10px;
    }

    /* Highlighted text */
    .highlight {
      background-color: rgba(52, 152, 219, 0.1);
      padding: 2px 5px;
      border-radius: 3px;
      font-weight: bold;
    }

    /* Footer */
    /* Nuevos estilos para el header con logo */
.header-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.header-logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header-text {
  text-align: left;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .header-logo-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .header-logo {
    max-width: 120px;
  }
  
  .header-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-logo {
    max-width: 100px;
  }
}
/* Estilos para el botón de regreso */
.back-button-container {
  text-align: center;
  margin: 40px 0 20px;
}

.back-button {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.back-button:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
}

.back-button i {
  font-size: 0.9rem;
}