:root {
  /* Пастельная цветовая схема */
  --primary-color: #6a7b76; /* Основной темно-зеленый */
  --primary-light: #8b9c96; /* Светлый оттенок основного */
  --primary-dark: #515c58; /* Темный оттенок основного */
  
  --secondary-color: #b5a897; /* Песочный */
  --secondary-light: #d2c7b8; /* Светлый песочный */
  --secondary-dark: #8c8274; /* Темный песочный */
  
  --accent-color: #a75d5d; /* Терракотовый акцент */
  --accent-light: #c17878; /* Светлый терракотовый */
  --accent-dark: #844a4a; /* Темный терракотовый */
  
  --background-color: #f5f3f0; /* Светлый фон */
  --background-alt: #e9e5e0; /* Альтернативный фон */
  
  --text-color: #333333; /* Основной текст */
  --text-light: #666666; /* Светлый текст */
  --text-white: #ffffff; /* Белый текст */
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры */
  --container-max: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

/* Утилиты */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--background-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.primary-btn:hover {
  background-color: var(--accent-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-btn {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Форма */
form {
  max-width: 100%;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

input, 
select, 
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background-color: #fff;
}

input:focus, 
select:focus, 
textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

/* Сетка */
.grid {
  display: grid;
  gap: 2rem;
}

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

.header.scrolled {
  background-color: rgba(245, 243, 240, 0.98);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
}

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

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

.desktop-nav li {
  margin-left: 2rem;
}

.desktop-nav a {
  color: var(--primary-dark);
  font-weight: 500;
  position: relative;
}

.desktop-nav a:hover {
  color: var(--accent-color);
}

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

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

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

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-dark);
  transition: all var(--transition-normal);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0.5rem 0;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.mobile-nav a:hover {
  background-color: var(--background-alt);
  color: var(--accent-color);
}

/* Hero секция */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-white);
  overflow: hidden;
}

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

.hero-title {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Секция услуг */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Секция процесса */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--text-white);
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

/* Галерея */
.gallery-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
  padding: 1rem 0;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.image-container {
  height: 400px;
  overflow: hidden;
}

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

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

.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
  z-index: 10;
}

.gallery-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--accent-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  padding: 0;
}

.gallery-nav button:hover {
  background-color: var(--accent-color);
  color: var(--text-white);
}

.gallery-nav button span {
  font-size: 1.5rem;
}

/* Секция сообщества */
.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.community-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.community-links {
  margin-top: 3rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.link-card {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-left: 4px solid var(--accent-color);
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.link-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--accent-color);
}

.link-content h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.link-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Секция команды */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

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

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 0.5rem;
}

.position {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Секция отзывов */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
  padding: 2rem 0;
}

@media (max-width: 1200px) {
  .testimonial-track {
    flex-direction: column;
  }
}

.testimonial-content {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.rating {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--accent-light);
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Секция блога */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.excerpt {
  margin-bottom: 1.5rem;
}

.read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--accent-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Секция проектов */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

/* Секция историй успеха */
.stories-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem;
}

.story-images img {
  width: calc(50% - 0.5rem);
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.story-content {
  padding: 2rem 2rem 2rem 0;
}

blockquote {
  font-style: italic;
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--accent-color);
  color: var(--text-light);
}

/* Секция контактов */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.info-item ul {
  list-style: none;
  margin: 0;
}

.info-item li {
  margin-bottom: 0.5rem;
}

.info-item span {
  font-weight: 500;
  color: var(--primary-dark);
  margin-right: 0.5rem;
}

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

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

/* Секция карьеры */
.careers-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.careers-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.careers-text h3 {
  margin: 2rem 0 1rem;
}

.careers-text ul {
  list-style-type: none;
}

.careers-text li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.careers-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.careers-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Футер */
.footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer h3 {
  color: var(--secondary-light);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-logo h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: var(--secondary-light);
}

.footer-nav ul,
.footer-services ul,
.footer-contact ul,
.footer-social ul {
  list-style: none;
  margin: 0;
}

.footer-nav li,
.footer-services li,
.footer-contact li,
.footer-social li {
  margin-bottom: 0.8rem;
}

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

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
  color: var(--secondary-light);
}

.footer-links ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-left: 1.5rem;
}

/* Cookie popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  z-index: 9999;
  padding: 1rem 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1rem;
}

.cookie-btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.cookie-btn:hover {
  background-color: var(--accent-dark);
}

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

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

.success-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.success-title {
  margin-bottom: 1rem;
}

.success-text {
  margin-bottom: 2rem;
}

/* Privacy and Terms pages */
.page-content {
  padding-top: 130px;
  padding-bottom: 5rem;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 2.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul, 
.page-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Адаптивный дизайн */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .story {
    grid-template-columns: 1fr;
  }
  
  .story-images {
    padding: 1.5rem 1.5rem 0;
  }
  
  .story-content {
    padding: 0 1.5rem 1.5rem;
  }
  
  .community-content, 
  .careers-content, 
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links ul {
    justify-content: center;
  }
  
  .footer-links li:first-child {
    margin-left: 0;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .gallery-item {
    flex: 0 0 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .story-images {
    flex-direction: column;
  }
  
  .story-images img {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .step-number {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }
  
  .step {
    padding: 1.5rem;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease forwards;
}