:root {
  /* Основные цвета */
  --primary-color: #ff6600;
  --primary-dark: #e14d00;
  --primary-light: #ff8533;
  --secondary-color: #0066cc;
  --secondary-dark: #004d99;
  --secondary-light: #3399ff;
  --accent-color: #ffcc00;
  --accent-dark: #e6b800;
  
  /* Нейтральные цвета */
  --black: #111111;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f0f0f0;
  --white: #ffffff;
  
  /* Фоновые цвета */
  --background-light: #f9f9f9;
  --background-dark: #222222;
  --background-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  
  /* Функциональные цвета */
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  
  /* Шрифты */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Размеры */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 80px;
  --card-border-radius: 0px;
  
  /* Тени */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--background-light);
  overflow-x: hidden;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Контейнеры и сетка */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark-gray);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--white);
}

button, input[type='submit'] {
  font-family: var(--heading-font);
  cursor: pointer;
}

/* Хедер */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.5rem;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: var(--text-shadow);
  color: var(--white);
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: var(--text-shadow);
  color: var(--white);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: var(--text-shadow);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Calendar Overview Section */
.calendar-overview {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.calendar-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 4px solid var(--dark-gray);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 rgba(0,0,0,0.1);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  width: 100%;
  height: 100%;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.card-content ul {
  margin-bottom: 20px;
  list-style-type: none;
  padding-left: 0;
}

.card-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.card-content ul li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Methodology Section */
.methodology {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.methodology-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.methodology-image img {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--dark-gray);
  box-shadow: 15px 15px 0 rgba(0,0,0,0.1);
}

.methodology-text {
  flex: 1;
  min-width: 300px;
}

.methodology-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.methodology-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.methodology-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.methodology-list li::before {
  content: '→';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Statistics Section */
.statistics {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.stat-card {
  background-color: var(--white);
  padding: 30px 20px;
  text-align: center;
  border: 4px solid var(--dark-gray);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-description {
  font-size: 1rem;
  color: var(--dark-gray);
}

.vacation-patterns {
  margin-top: 60px;
}

.vacation-patterns h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.chart-container {
  margin-bottom: 30px;
  text-align: center;
}

.chart-container img {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--dark-gray);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.patterns-explanation {
  max-width: 800px;
  margin: 0 auto;
}

/* Resources Section */
.resources {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.resources-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.2rem;
}

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

.resource-card {
  background-color: var(--light-gray);
  padding: 25px;
  border: 3px solid var(--dark-gray);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.resource-card a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-card a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.resource-card p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Tips Section */
.tips {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.tips-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.carousel-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tip-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.tip-image {
  flex: 1;
  min-width: 300px;
}

.tip-image img {
  width: 100%;
  height: auto;
  border: 4px solid var(--dark-gray);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.tip-text {
  flex: 1;
  min-width: 300px;
}

.tip-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  background-color: var(--dark-gray);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 15px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--medium-gray);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Media Section */
.media {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gallery-item:hover::before {
  transform: scaleX(1);
}

.gallery-item .image-container {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.gallery-item p {
  font-size: 0.95rem;
  color: var(--medium-gray);
}

/* Vision Section */
.vision {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.vision-image {
  flex: 1;
  min-width: 300px;
  order: 2;
}

.vision-image img {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--dark-gray);
  box-shadow: -15px 15px 0 rgba(0,0,0,0.1);
}

.vision-text {
  flex: 1;
  min-width: 300px;
  order: 1;
}

.vision-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.vision-text p {
  margin-bottom: 20px;
}

.vision-text ul {
  list-style-type: none;
  padding-left: 0;
}

.vision-text ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.vision-text ul li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* Contact Section */
.contact {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--light-gray);
  padding: 40px;
  border: 4px solid var(--dark-gray);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--dark-gray);
  background-color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.form-checkbox {
  display: flex;
  align-items: center;
}

.form-checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-checkbox label {
  margin-bottom: 0;
}

.submit-btn {
  margin-top: 15px;
  width: 100%;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border: 4px solid var(--dark-gray);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-details {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.contact-details li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.social-media h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--dark-gray);
  text-decoration: none;
}

/* Footer */
.main-footer {
  padding: 80px 0 30px;
  background-color: var(--dark-gray);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.footer-section ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .social-links {
  margin-bottom: 20px;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.success-container {
  max-width: 600px;
  padding: 50px;
  background-color: var(--white);
  border: 4px solid var(--dark-gray);
  box-shadow: 15px 15px 0 rgba(0,0,0,0.1);
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 30px;
}

.success-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.success-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Inner Pages (About, Terms, Privacy) */
.inner-page {
  padding-top: 150px;
  padding-bottom: 80px;
}

.inner-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.inner-page h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}

.inner-page h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
}

.inner-page p {
  margin-bottom: 20px;
}

.inner-page ul {
  margin-bottom: 20px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 60px;
  }
  
  .hero {
    padding: 150px 0 100px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .methodology-content, .vision-content {
    flex-direction: column;
  }
  
  .vision-image, .methodology-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .vision-text, .methodology-text {
    order: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .tip-content {
    flex-direction: column;
  }
  
  .tip-image {
    margin-bottom: 20px;
  }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .main-nav.active {
    height: auto;
    padding: 20px 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    padding: 25px;
  }
}

/* Cookie Consent Styles */
#cookie-consent {
  font-family: var(--body-font);
}

#accept-cookies {
  font-family: var(--heading-font);
  font-weight: 700;
  transition: all 0.3s ease;
}

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