:root {
      --primary: #6a4c93;
      --secondary: #8a5a44;
      --accent: #f8bbd0;
      --dark: #1a1423;
      --light: #f9f7f3;
      --highlight: #b8b8ff;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Courier New', monospace;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--light);
      padding-top: 80px;
    }
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--primary);
      color: var(--light);
      padding: 1rem;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--accent);
      text-decoration: none;
    }
    
    nav ul {
      display: flex;
      list-style: none;
    }
    
    nav ul li {
      margin-left: 1.5rem;
    }
    
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    
    nav ul li a:hover {
      color: var(--accent);
    }
    
    .burger {
      display: none;
      cursor: pointer;
    }
    
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    
    .privacy-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    h1, h2, h3 {
      margin-bottom: 1.5rem;
      color: var(--primary);
    }
    
    h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    
    h2 {
      font-size: 1.8rem;
      margin-top: 2rem;
    }
    
    p, li {
      margin-bottom: 1rem;
    }
    
    ul {
      margin-left: 2rem;
    }
    
    footer {
      background-color: var(--dark);
      color: var(--light);
      padding: 3rem 1rem;
      margin-top: 2rem;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
    
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--accent);
      margin-bottom: 1rem;
      display: inline-block;
    }
    
    .footer-links h3 {
      color: var(--accent);
      margin-bottom: 1rem;
    }
    
    .footer-links ul {
      list-style: none;
      margin-left: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.5rem;
    }
    
    .footer-links a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .contact-info p {
      display: flex;
      align-items: center;
      margin-bottom: 0.8rem;
    }
    
    .contact-info i {
      margin-right: 0.5rem;
      color: var(--accent);
    }
    
    .copyright {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .disclaimer {
      background-color: var(--dark);
      color: var(--light);
      padding: 1rem;
      font-size: 0.8rem;
      text-align: center;
    }
    
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--dark);
      color: var(--light);
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    
    .cookie-banner.show {
      transform: translateY(0);
    }
    
    .cookie-banner p {
      margin-right: 1rem;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--secondary);
      color: var(--light);
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn:hover {
      background-color: var(--primary);
    }
    
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
      }
      
      nav ul.active {
        transform: translateY(0);
      }
      
      nav ul li {
        margin: 0.5rem 0;
      }
      
      .burger {
        display: block;
      }
      
      .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      
      .burger.active div:nth-child(2) {
        opacity: 0;
      }
      
      .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
      
      h1 {
        font-size: 2rem;
      }
      
      .cookie-banner {
        flex-direction: column;
        text-align: center;
      }
      
      .cookie-banner .btn {
        margin-top: 1rem;
      }
    }

