@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --lavender: #6C5CE7;
  --peach: #FD79A8;
  --mint: #00B894;
  --sand: #FDCB6E;
  --gray: #636E72;
  --text-dark: #0f0f0f;
  --text-medium: #2d3436;
  --text-light: #74B9FF;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #1e1e2e;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: rgba(255,255,255,0.8);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-wrapper {
  position: relative;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(30, 30, 46, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(108, 92, 231, 0.2), 0 4px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform var(--transition-base), background var(--transition-base);
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  color: #ffffff;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--peach) 30%, var(--mint) 70%, var(--sand) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease-out 0.2s both;
  color: #ffffff;
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: rgba(255,255,255,0.9);
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 400;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: calc(var(--space-sm) + 0.25rem) calc(var(--space-xl) + 0.5rem);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: rgba(36, 36, 58, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(108, 92, 231, 0.5);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-secondary:hover {
  background: rgba(108, 92, 231, 0.3);
  color: #ffffff;
  border-color: rgba(108, 92, 231, 0.8);
}

.section {
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--lavender), var(--peach), var(--mint));
  border-radius: 2px;
  transition: transform 0.6s ease 0.3s;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title.visible::after {
  transform: translateX(-50%) scaleX(1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.card {
  background: rgba(36, 36, 58, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 2px 20px rgba(108, 92, 231, 0.2), 0 0 0 1px rgba(108, 92, 231, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lavender), var(--peach), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out both;
}

.card.visible::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.4), 0 0 0 1px rgba(108, 92, 231, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: #ffffff;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  position: relative;
}

.asymmetric-item {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all var(--transition-slow);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(30px);
}

.asymmetric-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.asymmetric-item.offset-left {
  margin-left: -5%;
  margin-right: 5%;
}

.asymmetric-item.offset-right {
  margin-left: 5%;
  margin-right: -5%;
}

.asymmetric-item.rotated {
  transform: rotate(-1deg);
}

.asymmetric-item.rotated.visible {
  transform: rotate(0deg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.product-card {
  background: rgba(36, 36, 58, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(253, 121, 168, 0.2), 0 0 0 1px rgba(253, 121, 168, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,231,246,0.3), rgba(255,236,227,0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.product-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 16px 48px rgba(253, 121, 168, 0.4), 0 0 0 1px rgba(253, 121, 168, 0.3);
}

.product-card:hover::after {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--lavender);
}

.product-info {
  padding: var(--space-xl);
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #ffffff;
  margin: var(--space-md) 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--mint) 100%);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: rgba(36, 36, 58, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 184, 148, 0.3), 0 0 0 1px rgba(0, 184, 148, 0.2);
  border: 1px solid rgba(0, 184, 148, 0.2);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: calc(var(--space-sm) + 0.25rem) var(--space-md);
  border: 2px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: rgba(36, 36, 58, 0.8);
  color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(108, 92, 231, 0.8);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
  transform: translateY(-2px);
  background: rgba(42, 42, 62, 0.9);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--text-dark);
  color: #ffffff;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  font-size: 0.75rem;
}

.footer a {
  color: #ffffff;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 30, 46, 0.98);
  padding: var(--space-lg);
  box-shadow: 0 -4px 12px rgba(108, 92, 231, 0.4);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 1px solid rgba(108, 92, 231, 0.3);
}

.cookie-popup p {
  color: rgba(255,255,255,0.9);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--lavender) 0%, var(--peach) 50%, var(--mint) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.error-page h1 {
  font-size: clamp(4rem, 20vw, 8rem);
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--mint) 0%, var(--sand) 50%, var(--lavender) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 25s linear infinite reverse;
}

.content-section {
  padding: var(--space-xl) 0;
}

.content-section:nth-child(even) {
  background: rgba(36, 36, 58, 0.5);
}

.policy-card {
  background: rgba(36, 36, 58, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  box-shadow: 0 2px 20px rgba(108, 92, 231, 0.2), 0 0 0 1px rgba(108, 92, 231, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4), 0 0 0 1px rgba(108, 92, 231, 0.3);
  border-left-color: var(--lavender);
}

.policy-card h2 {
  margin-bottom: var(--space-md);
  color: #ffffff;
  font-size: 1.75rem;
}

.policy-card h3 {
  margin-bottom: var(--space-sm);
  color: #ffffff;
  font-size: 1.25rem;
}

.policy-card p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.policy-page-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid rgba(108, 92, 231, 0.3);
}

.policy-page-header h1 {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 5vw, 3rem);
}

.policy-page-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.policy-info-card {
  background: rgba(36, 36, 58, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 20px rgba(108, 92, 231, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.policy-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.policy-info-card .card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--lavender);
}

.policy-info-card h3,
.policy-info-card p {
  color: rgba(255,255,255,0.9);
}

.last-updated {
  text-align: center;
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  background: rgba(36, 36, 58, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1e1e2e;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    z-index: 999;
    border-left: 1px solid rgba(108, 92, 231, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .asymmetric-item.offset-left,
  .asymmetric-item.offset-right {
    margin-left: 0;
    margin-right: 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header-container {
    padding: 0 var(--space-sm);
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-menu {
    width: 100%;
    max-width: 280px;
  }

  .nav-menu a {
    font-size: 0.8125rem;
  }

  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .hero-section {
    min-height: 90vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

  .hero-content p {
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
  }

  .btn {
    padding: calc(var(--space-xs) + 0.125rem) var(--space-lg);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .btn-secondary {
    padding: calc(var(--space-xs) + 0.125rem) var(--space-lg);
    font-size: 0.75rem;
  }

  .card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .product-card {
    border-radius: var(--radius-lg);
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: var(--space-lg);
  }

  .product-price {
    font-size: 1.5rem;
    margin: var(--space-sm) 0;
  }

  .section-title {
    margin-bottom: var(--space-xl);
    font-size: 1.75rem;
  }

  .section-title::after {
    width: 60px;
    bottom: -10px;
  }

  .asymmetric-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .asymmetric-item.rotated {
    transform: none !important;
  }

  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-section {
    padding: var(--space-xl) var(--space-sm);
  }

  .contact-form {
    padding: var(--space-xl);
  }

  .contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-group label {
    font-size: 0.8125rem;
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8125rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-group {
    margin-top: var(--space-sm);
  }

  .checkbox-group label {
    font-size: 0.75rem;
  }

  .map-container {
    height: 300px;
    margin-top: var(--space-lg);
  }

  .policy-page-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  .policy-page-header h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .policy-page-header p {
    font-size: 0.875rem;
  }

  .policy-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .policy-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .policy-card h3 {
    font-size: 1.125rem;
  }

  .policy-card p {
    font-size: 0.8125rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .policy-info-card {
    padding: var(--space-lg);
  }

  .policy-info-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }

  .policy-info-card h3 {
    font-size: 1rem;
  }

  .policy-info-card p {
    font-size: 0.8125rem;
  }

  .last-updated {
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    font-size: 0.75rem;
  }

  .error-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 90vh;
  }

  .error-page h1 {
    font-size: 4rem;
    margin-bottom: var(--space-md);
  }

  .thank-you-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 90vh;
  }

  .footer {
    padding: var(--space-lg) var(--space-sm);
    font-size: 0.6875rem;
  }

  .cookie-popup {
    padding: var(--space-md);
  }

  .cookie-content {
    gap: var(--space-md);
  }

  .cookie-text {
    min-width: auto;
  }

  .cookie-text p {
    font-size: 0.8125rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }

  img {
    border-radius: var(--radius-sm);
  }
}

@media (min-width: 769px) {
  .asymmetric-layout {
    grid-template-columns: 1fr 1fr;
  }

  .asymmetric-item.offset-left {
    grid-column: 1;
  }

  .asymmetric-item.offset-right {
    grid-column: 2;
  }
}

