:root {
  /* Основная цветовая схема (раздельно-дополнительная) */
  --primary-color: #1e6091; /* Основной синий */
  --primary-dark: #0a4c7a; /* Темно-синий */
  --primary-light: #3a7ca5; /* Светло-синий */
  
  --secondary-color: #e63946; /* Дополнительный красный */
  --secondary-dark: #c1272d; /* Темно-красный */
  --secondary-light: #ff5a67; /* Светло-красный */
  
  --accent-color: #f3a712; /* Акцентный оранжевый */
  --accent-dark: #d68c00; /* Темно-оранжевый */
  --accent-light: #ffbf46; /* Светло-оранжевый */
  
  /* Нейтральные цвета */
  --neutral-dark: #232323; /* Почти черный */
  --neutral-medium: #555555; /* Средне-серый */
  --neutral-light: #f0f0f0; /* Светло-серый */
  --neutral-white: #ffffff; /* Белый */
  
  /* Фоновые цвета */
  --bg-primary: #f8f9fa; /* Основной фон */
  --bg-secondary: #e9ecef; /* Вторичный фон */
  --bg-dark: #212529; /* Темный фон */
  
  /* Эко-минималистические цвета */
  --eco-green: #6b9080; /* Приглушенный зеленый */
  --eco-beige: #f6f4d2; /* Бежевый */
  --eco-brown: #a37b73; /* Коричневый */
  
  /* Типографика */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Размеры */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  --section-spacing: 5rem;
  --card-spacing: 1.5rem;
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Границы */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-width: 2px;
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  background-color: var(--bg-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Контейнеры */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Секции */
section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--neutral-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 1rem auto 0;
}

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  border: var(--border-width) solid transparent;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before, button::before, input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease-out;
  z-index: 1;
}

.btn:hover::before, button:hover::before, input[type='submit']:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  color: #fff;

  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 1rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--neutral-dark);
  transition: all var(--transition-normal);
}

/* Hero секция */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--neutral-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--neutral-white);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: var(--neutral-white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Инновации */
.innovation {
  background-color: var(--bg-primary);
  position: relative;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.innovation-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.innovation-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-content p {
  color: var(--neutral-medium);
  margin-bottom: 1rem;
}

/* Исследования */
.research {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.research::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(30, 96, 145, 0.05), rgba(230, 57, 70, 0.05));
  z-index: 0;
}

.research-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.research-text {
  flex: 1;
}

.research-text p {
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

.research-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform var(--transition-normal);
}

.research-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.research-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Статистика */
.statistics {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.statistics .section-title {
  color: var(--neutral-white);
}

.statistics .section-title::after {
  background-color: var(--neutral-white);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.stats-details {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.stats-details p {
  margin-bottom: 1rem;
}

.stats-details p:last-child {
  margin-bottom: 0;
}

/* Истории клиентов */
.customer-stories {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.stories-slider {

  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: transform var(--transition-slow);
}

.story-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin: 0 1rem;
}

.story-image {
  flex: 0 0 150px;
}

.story-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.story-text {
  flex: 1;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 0;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: serif;
}

.author {
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
}

/* Новости */
.news {
  background-color: var(--bg-secondary);
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card .card-image {
  width: 100%;
  height: 200px;
}

.news-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.news-card .card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.news-card .card-content p {
  color: var(--neutral-medium);
  margin-bottom: 0.75rem;
}

.news-card .card-content p:first-of-type {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Ресурсы */
.resources {
  background-color: var(--neutral-white);
  position: relative;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.resource-card h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.resource-card ul {
  padding: 0;
  list-style-position: inside;
  margin-bottom: 1.5rem;
  text-align: left;
}

.resource-card li {
  margin-bottom: 0.5rem;
}

.resource-card a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--primary-dark);
}

.resource-card .btn {
  margin-top: auto;
}

/* Контакты */
.contact {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info, .contact-form {
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info h3, .contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.contact-info i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.2);
}

/* Футер */
.footer {
  background-color: var(--bg-dark);
  color: var(--neutral-white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--neutral-white);
}

.footer-logo p {
  color: var(--neutral-light);
  max-width: 300px;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-white);
  position: relative;
}

.footer h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
}

.footer-links ul {
  padding: 0;
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-social a {
  display: inline-block;
  color: var(--neutral-light);
  margin-right: 1rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--neutral-light);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-light);
}

.footer-bottom a:hover {
  color: var(--neutral-white);
}

/* Страницы privacy и terms */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 400px);
}

.page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content p, .page-content li {
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

/* Страница success */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-primary);
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--neutral-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
  color: var(--neutral-dark);
}

.success-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background-color: var(--eco-green);
  color: var(--neutral-white);
  font-size: 3rem;
  line-height: 80px;
  text-align: center;
}

/* Адаптивность */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .research-content {
    flex-direction: column;
  }
  
  .research-image {
    transform: none;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--neutral-white);
    overflow: hidden;
    transition: height var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .main-nav.active {
    height: calc(100vh - 70px);
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 2rem;
  }
  
  .main-nav li {
    margin: 1rem 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .story-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo p {
    max-width: 100%;
  }
  
  .footer h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-info, .contact-form {
    padding: 1.5rem;
  }
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s forwards;
}

/* Стили для ссылок "Читать далее" */
.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Стили для иконок */
[class^="icon-"] {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}

.icon-location {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231e6091"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.icon-phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231e6091"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.icon-mail {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231e6091"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

/* Стили для куки-попапа */
#cookie-consent {
  border-top: 3px solid var(--primary-color);
}

#accept-cookies {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border: none;
  padding: 8px 16px;
  margin: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--font-heading);
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}