:root {
  --color-bg: #F4F4F4;
  --color-text: #2C3E50;
  --color-accent: #E74C3C;
  --color-secondary: #C0392B;
  --color-buttons: #95A5A6;
  --color-white: #FFFFFF;
  --color-shadow: rgba(44, 62, 80, 0.1);
  --color-shadow-hover: rgba(44, 62, 80, 0.2);
  
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  --border-radius: 1.5rem;
  --border-radius-pill: 2rem;
  --border-radius-sm: 0.5rem;
  
  --shadow-sm: 0 2px 4px var(--color-shadow);
  --shadow-md: 0 4px 8px var(--color-shadow);
  --shadow-lg: 0 8px 16px var(--color-shadow);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --grid-gap: 1.5rem;
  
  --breakpoint-lg: 1024px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(231, 76, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 70%, rgba(192, 57, 43, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(149, 165, 166, 0.03) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='paper' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Crect fill='%23F4F4F4' width='100' height='100'/%3E%3Cpath d='M0 0L100 100M100 0L0 100' stroke='%23E0E0E0' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23paper)' width='100' height='100'/%3E%3C/svg%3E");
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  min-width: 320px;
  position: relative;
}

@media (max-width: 575px) {
  a {
    word-wrap: anywhere;
  }

  h1, h2, h3, h4, h5, h6 {
    hyphens: auto;
  }
}

.link {
  color: var(--color-accent);
  text-decoration: none;
}

.link:hover {
  color: var(--color-text);
  text-decoration: none;
}

.header {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(244, 244, 244, 0.98) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.12), 0 2px 8px rgba(231, 76, 60, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  align-items: center;
  display: flex;
  gap: var(--spacing-sm);
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-sm);
}

.header__logo {
  align-items: center;
  display: flex;
  gap: var(--spacing-xs);
  text-decoration: none;
}

.header__logo-icon {
  height: 2.5rem;
  width: 2.5rem;
}

.header__logo-text {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.header__nav {
  position: relative;
}

.header__menu-toggle {
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--color-text);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  list-style: none;
}

@media (max-width: 1023px) {
  .header__menu-toggle {
    display: flex;
  }
  
  .header__nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 88px;
  }
  
  .header__nav-list--open {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    display: flex;
    padding: var(--spacing-sm);
  }
  
  .header__nav-item {
    width: 100%;
  }
  
  .header__nav-link {
    border-radius: var(--border-radius-sm);
    display: block;
    padding: var(--spacing-sm);
    width: 100%;
  }
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  border-radius: var(--border-radius-pill);
  color: var(--color-text);
  display: block;
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-md);
  position: relative;
  text-decoration: none;
  transition: all var(--transition-base);
  overflow: hidden;
}

.header__nav-link::before {
  background: radial-gradient(circle at center, var(--color-accent) 0%, transparent 70%);
  border-radius: var(--border-radius-pill);
  content: '';
  height: 100%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition-base), opacity var(--transition-base);
  width: 100%;
  z-index: -1;
}

.header__nav-link::after {
  background: linear-gradient(135deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: translateX(-100%);
  transition: transform var(--transition-base), opacity var(--transition-base);
  width: 100%;
}

.header__nav-link:hover::before,
.header__nav-link.active::before,
.header__nav-link:focus::before {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1);
}

.header__nav-link:hover::after,
.header__nav-link.active::after,
.header__nav-link:focus::after {
  opacity: 0.6;
  transform: translateX(0);
}

.header__nav-link:hover,
.header__nav-link:a,
.header__nav-link:focus {
  color: var(--color-accent);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .header__container {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .header__nav {
    width: auto;
  }
  
  .header__nav-list {
    gap: var(--spacing-md);
  }
  
  .header__nav-link::after {
    background: linear-gradient(135deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    content: '';
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translateX(-100%);
    transition: transform var(--transition-base), opacity var(--transition-base);
    width: 100%;
  }
  
  .header__nav-link:hover::after,
  .header__nav-link:focus::after {
    opacity: 0.8;
    transform: translateX(0);
  }
}

.main {
  min-height: calc(100vh - 200px);
}

.hero {
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.hero__slider {
  border-radius: 0 0 40% 30% / 0 0 30% 20%;
  height: 60vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(44, 62, 80, 0.15), 0 4px 16px rgba(231, 76, 60, 0.1);
}

.hero__slide {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: none;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.hero__slide--active {
  display: flex;
}

.hero__slide-content {
  background: linear-gradient(135deg, rgba(244, 244, 244, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.2), 0 4px 16px rgba(231, 76, 60, 0.15);
  max-width: 90%;
  padding: var(--spacing-xl);
  position: relative;
  text-align: center;
}

.hero__slide-content::before {
  background: radial-gradient(circle at top right, rgba(231, 76, 60, 0.1) 0%, transparent 60%);
  border-radius: inherit;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.hero__slide-title {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.hero__slide-text {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.hero__controls {
  bottom: var(--spacing-md);
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.hero__control {
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  transition: all var(--transition-base);
  width: 12px;
}

.hero__control--active {
  background-color: var(--color-accent);
}

.hero__control:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: scale(1.2);
}

.section {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-sm);
}

.section__container {
  margin: 0 auto;
  max-width: 1200px;
}

.section__header {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.section__title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.section__title::after {
  background: radial-gradient(ellipse 100% 200%, var(--color-accent) 0%, rgba(231, 76, 60, 0.5) 50%, transparent 100%);
  border-radius: 50%;
  content: '';
  height: 6px;
  left: 50%;
  position: absolute;
  top: calc(100% + var(--spacing-xs));
  transform: translateX(-50%);
  width: 80px;
}

.section__title::before {
  background: radial-gradient(circle, rgba(192, 57, 43, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  content: '';
  height: 12px;
  left: 50%;
  opacity: 0.6;
  position: absolute;
  top: calc(100% + var(--spacing-xs) - 3px);
  transform: translateX(-50%);
  width: 12px;
}

.section__subtitle {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.8;
}

.section__content {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

.section__highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  background-clip: text;
  color: transparent;
  font-weight: 700;
  position: relative;
  -webkit-background-clip: text;
}

.card {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12), 0 2px 8px rgba(231, 76, 60, 0.08);
  overflow: hidden;
  padding: var(--spacing-lg);
  position: relative;
  transition: all var(--transition-base);
}

.card::before {
  background: radial-gradient(ellipse 80% 60% at top right, rgba(231, 76, 60, 0.12) 0%, transparent 70%);
  border-radius: inherit;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
  width: 100%;
  z-index: 0;
}

.card::after {
  background: radial-gradient(circle at bottom left, rgba(192, 57, 43, 0.08) 0%, transparent 60%);
  border-radius: inherit;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity var(--transition-base);
  width: 100%;
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(44, 62, 80, 0.18), 0 6px 20px rgba(231, 76, 60, 0.12);
  transform: translateY(-6px) rotate(0.5deg);
}

.card__content {
  position: relative;
  z-index: 2;
}

.form__group {
  position: relative;
  z-index: 1;
}

.policy-page__section {
  position: relative;
  z-index: 1;
}

.card__image {
  border-radius: var(--border-radius-sm);
  height: auto;
  margin-bottom: var(--spacing-md);
  width: 100%;
}

.card__title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

.card__title i {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  background-clip: text;
  color: transparent;
  margin-right: var(--spacing-xs);
  -webkit-background-clip: text;
}

.card__text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.btn {
  align-items: center;
  background: linear-gradient(135deg, var(--color-buttons) 0%, rgba(149, 165, 166, 0.9) 100%);
  border: 2px solid transparent;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  gap: var(--spacing-xs);
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-sm) var(--spacing-lg);
  position: relative;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  content: '';
  height: 100%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition-base), opacity var(--transition-base);
  width: 100%;
  z-index: 0;
}

.btn:hover::before,
.btn:focus::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.btn:hover,
.btn:focus {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover,
.btn--primary:focus {
  background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(192, 57, 43, 0.9) 100%);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn__icon {
  position: relative;
  z-index: 1;
}

.btn__icon {
  height: 1rem;
  width: 1rem;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section__content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero__slide-title {
    font-size: 3rem;
  }
  
  .section__title {
    font-size: 3rem;
  }
}

.asymmetric {
  margin-left: 0;
  margin-right: auto;
  max-width: 90%;
  position: relative;
}

.asymmetric::before {
  background: radial-gradient(ellipse 40% 30% at left center, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  content: '';
  height: 200px;
  left: -50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: -1;
}

.asymmetric--right {
  margin-left: auto;
  margin-right: 0;
  position: relative;
}

.asymmetric--right::before {
  background: radial-gradient(ellipse 40% 30% at right center, rgba(192, 57, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  content: '';
  height: 200px;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .asymmetric--right::before {
    right: 0;
  }
}

.curve {
  border-radius: 35% 65% 75% 25% / 40% 35% 65% 60%;
  overflow: hidden;
  position: relative;
}

.curve::before {
  background: radial-gradient(ellipse 60% 40% at top left, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: inherit;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.overlap {
  margin-top: calc(var(--spacing-xl) * -1.5);
  position: relative;
  z-index: 10;
}

.overlap .card {
  box-shadow: 0 10px 32px rgba(44, 62, 80, 0.15), 0 4px 16px rgba(231, 76, 60, 0.1);
}

.form {
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  color: var(--color-text);
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.form__input,
.form__textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--color-buttons);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--spacing-sm) var(--spacing-md);
  position: relative;
  transition: all var(--transition-base);
  width: 100%;
  z-index: 1;
}

.form__input:focus,
.form__textarea:focus {
  background: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1), 0 4px 12px rgba(231, 76, 60, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.form__input--error,
.form__textarea--error {
  border-color: var(--color-accent);
}

.form__error {
  color: var(--color-accent);
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
}

.form__checkbox-group {
  align-items: flex-start;
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.form__checkbox {
  margin-top: 0.25rem;
}

.form__checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.form__submit {
  width: 100%;
}

.footer {
  background: linear-gradient(135deg, var(--color-text) 0%, rgba(44, 62, 80, 0.98) 100%);
  color: var(--color-white);
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-sm);
  position: relative;
}

.footer::before {
  background: radial-gradient(ellipse 60% 40% at top center, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.footer__container {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.footer__section {
  margin-bottom: var(--spacing-md);
}

.footer__title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.footer__text {
  color: var(--color-white);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer__list {
  list-style: none;
}

.footer__link {
  color: var(--color-white);
  display: block;
  margin-bottom: var(--spacing-xs);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__link:hover,
.footer__link:focus {
  color: var(--color-accent);
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 0.875rem;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  position: relative;
  text-align: center;
  z-index: 2;
}

.footer__copyright-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-xs);
}

.footer__copyright-link {
  color: var(--color-white);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__copyright-link:hover,
.footer__copyright-link:focus {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cookie-banner {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 4px solid var(--color-accent);
  bottom: 0;
  box-shadow: 0 -8px 32px rgba(44, 62, 80, 0.2), 0 -4px 16px rgba(231, 76, 60, 0.15);
  display: none;
  left: 0;
  padding: var(--spacing-lg);
  position: fixed;
  right: 0;
  z-index: 10000;
}

.cookie-banner--visible {
  display: block;
}

.cookie-banner__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin: 0 auto;
  max-width: 1200px;
}

.cookie-banner__text {
  color: var(--color-text);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

.cookie-settings {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-radius: 30% 70% 60% 40% / 40% 30% 70% 60%;
  box-shadow: 0 12px 48px rgba(44, 62, 80, 0.25), 0 6px 24px rgba(231, 76, 60, 0.2);
  display: none;
  left: 50%;
  max-height: 80vh;
  max-width: 600px;
  overflow-y: auto;
  padding: var(--spacing-xl);
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 10001;
}

.cookie-settings--visible {
  display: block;
}

.cookie-settings__title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cookie-settings__group {
  border-bottom: 1px solid var(--color-shadow);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.cookie-settings__group-title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.cookie-settings__group-text {
  color: var(--color-text);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.8;
}

.cookie-settings__toggle {
  align-items: center;
  display: flex;
  gap: var(--spacing-sm);
  justify-content: space-between;
}

.cookie-settings__toggle-switch {
  appearance: none;
  background: linear-gradient(135deg, var(--color-buttons) 0%, rgba(149, 165, 166, 0.9) 100%);
  border-radius: var(--border-radius-pill);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 26px;
  position: relative;
  transition: all var(--transition-base);
  width: 50px;
}

.cookie-settings__toggle-switch::before {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  content: '';
  height: 20px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  width: 20px;
}

.cookie-settings__toggle-switch:checked {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.cookie-settings__toggle-switch:checked::before {
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
  transform: translateX(24px);
}

.cookie-settings__toggle-switch:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.back-to-top {
  align-items: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  bottom: var(--spacing-lg);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4), 0 2px 8px rgba(44, 62, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  cursor: pointer;
  display: none;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: var(--spacing-lg);
  transition: all var(--transition-base);
  width: 56px;
  z-index: 999;
}

.back-to-top::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity var(--transition-base);
  width: 100%;
}

.back-to-top--visible {
  display: flex;
}

.back-to-top:hover::before,
.back-to-top:focus::before {
  opacity: 1;
}

.back-to-top:hover,
.back-to-top:focus {
  background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(192, 57, 43, 0.9) 100%);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.5), 0 4px 12px rgba(44, 62, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-6px) scale(1.1);
}

.back-to-top__icon {
  font-size: 1.5rem;
  height: 24px;
  width: 24px;
}

.policy-page {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15), 0 4px 16px rgba(231, 76, 60, 0.1);
  margin: 0 auto;
  max-width: 900px;
  padding: var(--spacing-xl);
  position: relative;
}

.policy-page::before {
  background: radial-gradient(ellipse 40% 30% at top left, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: inherit;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.policy-page__title {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.policy-page__section {
  margin-bottom: var(--spacing-xl);
}

.policy-page__section-title {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.policy-page__text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.policy-page__list {
  margin-bottom: var(--spacing-sm);
  margin-left: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.policy-page__list-item {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-xs);
}

.aria-live {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.section__subtitle--small {
  font-size: 1rem;
  margin-top: var(--spacing-sm);
  opacity: 0.9;
}

.card__text--margin-bottom {
  margin-bottom: var(--spacing-sm);
}

.card__text--small {
  font-size: 0.9rem;
  opacity: 0.8;
}

.card__content--spacing-top {
  margin-top: var(--spacing-lg);
}

.card__content--border-top {
  border-top: 1px solid var(--color-shadow);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
}

.card__title--small {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.form__header {
  margin-bottom: var(--spacing-md);
}

.form__description {
  margin-bottom: var(--spacing-lg);
}

.card__actions {
  margin-top: var(--spacing-md);
}

.card--centered {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.card__icon-large {
  color: var(--color-accent);
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.card__actions--column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.policy-page__section-title--sub {
  font-size: 1.25rem;
  margin-top: var(--spacing-md);
}

.hero__slide--bg-1 {
  background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.4)), url('../images/img08.webp');
}

.hero__slide--bg-2 {
  background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.4)), url('../images/img08.webp');
}

.hero__slide--bg-3 {
  background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.4)), url('../images/img10.webp');
}

@media (max-width: 767px) {
  .hero__slide-title {
    font-size: 1.5rem;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .hero__slider {
    border-radius: 0 0 25% 20% / 0 0 20% 15%;
    height: 50vh;
    min-height: 600px;
  }
  
  .hero__slide-content {
    border-radius: 25% 75% 60% 40% / 40% 30% 70% 60%;
    padding: var(--spacing-lg);
  }
  
  .card:hover {
    transform: translateY(-4px) rotate(0deg);
  }
  
  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .back-to-top {
    bottom: var(--spacing-md);
    height: 50px;
    right: var(--spacing-md);
    width: 50px;
  }
  
  .asymmetric::before,
  .asymmetric--right::before {
    display: none;
  }
  
  .form {
    padding: var(--spacing-lg);
  }
  
  .policy-page {
    padding: var(--spacing-lg);
  }
  
  .cookie-settings {
    border-radius: 20% 80% 50% 50% / 30% 25% 75% 70%;
    padding: var(--spacing-lg);
  }
  
  .header__nav-link {
    border-radius: var(--border-radius-sm);
  }
}

