:root {
      --primary: #6a0dad;
      --secondary: #00ff9d;
      --dark: #000;
      --light: #fff;
      --accent: #ff00ff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      padding: 1rem;
      border-bottom: 2px solid var(--secondary);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--secondary);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s;
    }
    main {
      margin-top: 80px;
    }
    section {
      padding: 4rem 2rem;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--secondary);
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }
    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      background-color: var(--secondary);
      color: var(--dark);
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: all 0.3s;
    }
    .btn:hover {
      background-color: var(--accent);
      color: var(--light);
    }
    .about, .products, .prices, .gallery, .feedback, .faq {
      background-color: var(--dark);
      border-bottom: 1px solid var(--primary);
    }
    h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--secondary);
      text-align: center;
    }
    h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--accent);
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
    }
    .gallery img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    .feedback-slider {
      overflow: hidden;
      position: relative;
    }
    .feedback-item {
      padding: 2rem;
      background-color: rgba(106, 13, 173, 0.2);
      border-radius: 10px;
      margin: 1rem;
      text-align: center;
    }
    .faq-item {
      margin-bottom: 1rem;
    }
    .faq-question {
      background-color: var(--primary);
      padding: 1rem;
      cursor: pointer;
      font-weight: bold;
    }
    .faq-answer {
      padding: 1rem;
      background-color: rgba(106, 13, 173, 0.2);
      display: none;
    }
    .faq-answer.active {
      display: block;
    }
    form {
      max-width: 500px;
      margin: 0 auto;
    }
    input, textarea {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--primary);
      color: var(--light);
    }
    footer {
      background-color: var(--dark);
      padding: 2rem;
      text-align: center;
      border-top: 2px solid var(--secondary);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--primary);
      padding: 1rem;
      text-align: center;
      display: none;
    }
    .cookie-banner.active {
      display: block;
    }
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background-color: var(--dark);
      padding: 2rem;
      max-width: 500px;
      text-align: center;
      border: 2px solid var(--secondary);
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: var(--dark);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s;
      }
      .nav-links.active {
        transform: translateX(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);
      }
    }
    :root {
      --primary: #6a0dad;
      --secondary: #00ff9d;
      --dark: #000;
      --light: #fff;
      --accent: #ff00ff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      padding: 1rem;
      border-bottom: 2px solid var(--secondary);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--secondary);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s;
    }
    main {
      margin-top: 80px;
      padding: 2rem;
    }
    h1 {
      font-size: 2.5rem;
      color: var(--secondary);
      margin-bottom: 2rem;
    }
    h2 {
      font-size: 1.8rem;
      color: var(--accent);
      margin: 1.5rem 0;
    }
    p, li {
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    ul {
      padding-left: 2rem;
    }
    footer {
      background-color: var(--dark);
      padding: 2rem;
      text-align: center;
      border-top: 2px solid var(--secondary);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--primary);
      padding: 1rem;
      text-align: center;
      display: none;
    }
    .cookie-banner.active {
      display: block;
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: var(--dark);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s;
      }
      .nav-links.active {
        transform: translateX(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);
      }
    }
    :root {
      --primary: #6a0dad;
      --secondary: #00ff9d;
      --dark: #000;
      --light: #fff;
      --accent: #ff00ff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Courier New', monospace;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      padding: 1rem;
      border-bottom: 2px solid var(--secondary);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--secondary);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s;
    }
    main {
      margin-top: 80px;
      padding: 2rem;
    }
    h1 {
      font-size: 2.5rem;
      color: var(--secondary);
      margin-bottom: 2rem;
    }
    h2 {
      font-size: 1.8rem;
      color: var(--accent);
      margin: 1.5rem 0;
    }
    p, li {
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    ul {
      padding-left: 2rem;
    }
    footer {
      background-color: var(--dark);
      padding: 2rem;
      text-align: center;
      border-top: 2px solid var(--secondary);
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--primary);
      padding: 1rem;
      text-align: center;
      display: none;
    }
    .cookie-banner.active {
      display: block;
    }
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: var(--dark);
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s;
      }
      .nav-links.active {
        transform: translateX(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);
      }
    }

