body { background: #021118; }


.text-page {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  background: #021118;
 } 


.text-page-header_brend_per {
  text-align: center;
  padding-top:50px;
  margin-bottom: 40px;
  color: #FFF;
}
.text-page-header {
  text-align: center;
  padding-top:110px;
  margin-bottom: 40px;
  color: #FFF;
}

.text-page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.text-page-header .subtitle {
  font-size: 1.1rem;
  color: #00b8b8;
}

.text-block {
  margin-bottom: 35px;
  color: #FFF;
}

.text-block h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.text-block p {
  margin-bottom: 15px;
}

.text-block ul,
.text-block ol {
  padding-left: 20px;
}

.text-block li {
  margin-bottom: 8px;
}

.cta-block {
  background-color: #007777;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  color: #FFF;
}

.cta-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background-color: #ffb703;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f5a400;
}

/* Мобильные устройства */
@media (max-width: 768px) {

  .text-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-page-header {
    padding-left: 8px;
    padding-right: 8px;
  }

  .text-block {
    padding-left: 4px;
    padding-right: 4px;
  }

}

.moving-track a {
  display: block;
  transition: transform 0.3s ease;
}

.moving-track a:hover {
  transform: scale(1.05);
}




.moving-gallery {
  width: 100%;
  overflow: hidden;
  margin: 80px 0 40px;
}

.moving-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-gallery 30s linear infinite;
}

.moving-track img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* пауза при наведении */
.moving-gallery:hover .moving-track {
  animation-play-state: paused;
}

@keyframes scroll-gallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px) {
  .moving-track img {
    height: 130px;
  }
}