.cookie-policy-page {
  background-color: var(--color-background);
  padding-bottom: var(--space-24);
}

.breadcrumb {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--color-gray-400);
}

.breadcrumb__link {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: 500;
}

.cookie-hero {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  padding: var(--space-16) 0;
  margin-bottom: var(--space-12);
  text-align: center;
}

.cookie-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.cookie-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.cookie-content {
  position: relative;
}

.cookie-content__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 1024px) {
  .cookie-content__wrapper {
    grid-template-columns: 1fr 280px;
  }
  
  .cookie-nav {
    position: sticky;
    top: var(--space-8);
    order: 2;
  }
  
  .cookie-section {
    order: 1;
  }
}

.cookie-section {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  position: relative;
}

.cookie-section:last-of-type {
  margin-bottom: 0;
}

.cookie-section--highlighted {
  border-left: 4px solid var(--color-primary);
  background: linear-gradient(to right, var(--color-primary-light), var(--color-surface));
}

.cookie-section--accent {
  border-left: 4px solid var(--color-secondary);
  background: linear-gradient(to right, var(--color-secondary-light), var(--color-surface));
}

.cookie-section--warning {
  border-left: 4px solid var(--color-warning);
  background: linear-gradient(to right, var(--color-warning), var(--color-surface));
}

.cookie-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.cookie-section__text {
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.cookie-section__text p {
  margin-bottom: var(--space-4);
}

.cookie-section__text p:last-child {
  margin-bottom: 0;
}

.cookie-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
}

.cookie-badge--required {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
}

.cookie-link {
  color: var(--color-primary);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.cookie-link:hover {
  border-bottom-color: var(--color-primary);
}

.cookie-nav {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  height: fit-content;
}

.cookie-nav__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-gray-100);
}

.cookie-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cookie-nav__link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.cookie-nav__link:hover {
  background-color: var(--color-primary-light);
  color: var(--color-text);
}

.cookie-related {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-gray-200);
}

.cookie-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.cookie-related__card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cookie-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cookie-related__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.cookie-related__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.cookie-related__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.cookie-related__link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.cookie-related__card:hover .cookie-related__link::after {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .cookie-hero__title {
    font-size: var(--text-5xl);
  }
  
  .cookie-section {
    padding: var(--space-10);
  }
}

@media (max-width: 1023px) {
  .cookie-nav {
    order: -1;
    margin-bottom: var(--space-6);
  }
  
  .cookie-nav__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-2);
  }
}

@media (max-width: 640px) {
  .cookie-hero {
    padding: var(--space-10) 0;
  }
  
  .cookie-hero__title {
    font-size: var(--text-3xl);
  }
  
  .cookie-section {
    padding: var(--space-6);
  }
  
  .cookie-section__title {
    font-size: var(--text-xl);
  }
  
  .cookie-badge {
    position: static;
    margin-bottom: var(--space-3);
  }
}