: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;
      overflow-x: hidden;
    }
    
    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;
    }
    
    section {
      padding: 4rem 1rem;
      position: relative;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    h1, h2, h3 {
      margin-bottom: 1.5rem;
      color: var(--primary);
    }
    
    h1 {
      font-size: 3rem;
      line-height: 1.2;
    }
    
    h2 {
      font-size: 2.2rem;
      border-bottom: 2px solid var(--secondary);
      padding-bottom: 0.5rem;
      display: inline-block;
    }
    
    h3 {
      font-size: 1.5rem;
    }
    
    p {
      margin-bottom: 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);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .hero {
      background: linear-gradient(rgba(26, 20, 35, 0.7), rgba(26, 20, 35, 0.7)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597') no-repeat center center/cover;
      height: 80vh;
      display: flex;
      align-items: center;
      color: var(--light);
      text-align: center;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }
    
    .about {
      background-color: var(--light);
    }
    
    .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }
    
    .about-text {
      flex: 1 1 400px;
    }
    
    .about-image {
      flex: 1 1 400px;
      height: 400px;
      background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b') no-repeat center center/cover;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .products {
      background-color: #f0e6ef;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .product-card {
      background-color: var(--light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .product-card:hover {
      transform: translateY(-10px);
    }
    
    .product-image {
      height: 200px;
      background-size: cover;
      background-position: center;
    }
    
    .product-content {
      padding: 1.5rem;
    }
    
    .prices {
      background-color: var(--light);
    }
    
    .price-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    
    .price-card {
      background-color: white;
      border-radius: 10px;
      padding: 2rem;
      flex: 1 1 300px;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s;
    }
    
    .price-card:hover {
      transform: scale(1.05);
    }
    
    .price {
      font-size: 2.5rem;
      color: var(--primary);
      margin: 1rem 0;
    }
    
    .price span {
      font-size: 1rem;
    }
    
    .gallery {
      background-color: #f0e6ef;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    
    .gallery-item {
      height: 250px;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .feedback {
      background-color: var(--light);
    }
    
    .feedback-slider {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }
    
    .slides {
      display: flex;
      transition: transform 0.5s ease;
    }
    
    .slide {
      min-width: 100%;
      padding: 2rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .client-info {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .client-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 1rem;
      object-fit: cover;
    }
    
    .client-name {
      font-weight: bold;
    }
    
    .controls {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }
    
    .controls button {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: var(--primary);
      margin: 0 1rem;
    }
    
    .faq {
      background-color: #f0e6ef;
    }
    
    .faq-item {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 1rem;
      background-color: white;
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: var(--light);
    }
    
    .faq-answer.active {
      padding: 1rem;
      max-height: 500px;
    }
    
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: inherit;
    }
    
    .form-group textarea {
      min-height: 150px;
    }
    
    footer {
      background-color: var(--dark);
      color: var(--light);
      padding: 3rem 1rem;
    }
    
    .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;
    }
    
    .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;
    }
    
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    
    .modal-content {
      background-color: var(--light);
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      position: relative;
    }
    
    .close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary);
    }
    
    .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;
    }
    
    .cookie-banner .btn {
      flex-shrink: 0;
    }
    
    @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: 2.2rem;
      }
      
      h2 {
        font-size: 1.8rem;
      }
      
      .hero {
        height: 60vh;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        height: 70vh;
      }
      
      h1 {
        font-size: 1.8rem;
      }
      
      .price-cards {
        flex-direction: column;
        align-items: center;
      }
      
      .price-card {
        width: 100%;
      }
      
      .cookie-banner {
        flex-direction: column;
        text-align: center;
      }
      
      .cookie-banner .btn {
        margin-top: 1rem;
      }
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .fade-in {
      animation: fadeIn 1s ease-in;
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(50px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .slide-up {
      animation: slideUp 0.8s ease-out;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    .parallax {
      background-attachment: fixed;
    }

