body { background: #021118; }
h1 {margin-top: 0; margin-bottom: 0; font-family: Verdana; font-size: 24pt;
	font-weight: 300; color: #00D4FF; text-align: center;}
h2 {margin-top: 0; margin-bottom: 0; font-family: Arial; font-size: 16pt;
	font-weight: 300; color: #00D4FF; text-align: left;}
     
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start; /* ?? фикс */
}

.text-inner {
  max-width: 100%;            /*  max-width: 700px;  */

}
.text_50 {
  flex: 0 0 50%;
  display: flex;
  align-items: flex-start; /* лучше так */

}
/* Блоки */
.block {
  background: #021118;
  border-radius: 14px;
  padding-left: 30px;
  padding-right: 30px;          /*   padding-right: 30px;       */
  padding-top: 10px;			/*   padding-top: 10px;       */
  padding-bottom: 10px;			/*   padding-bottom: 10px;      */

  font-size: 24px;
  transition: all 0.3s ease;
}

/* Hover эффект */
.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.2);
}
     
/* ======= Кнопки ======= */
.btn-primary, .btn-primary-2, .btn-primary-3 {
  display: inline-block;
  background-color: #00bcd4;
  color: #fff;
  padding: 12px 28px;               /*  padding: 12px 28px;      */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-primary-2 {
marggn-left: 45%;
}

.btn-primary:hover {
  background-color: #00a5bb;
}
.btn-primary-2:hover {
  background-color: #00a5bb;
}




h2 {
  margin-top: 25px;
}
     
h4 {
line-height: 1.5em; 
}  


.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;
  }
}

/* FAQ block — Postcards gallery */

.faq-block {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 20px 60px;
  color: #fff;
  line-height: 1.7;
}

.faq-block h2 {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.faq-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;  
  font-weight: 700;
  color: #00D4FF;
             /*  #ffb3ff;  */
text-align: left;
}

.faq-item p {
  font-size: 16px;
  margin: 0;
  color: #f0f0f0;
  text-align: left;
}

.zelen {
color: #00D4FF;
 
}


   
/* ?? Адаптив */
@media (max-width: 768px) {

  .block-1 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .row {
    flex-direction: column;
  }

  .img,
  .text {
    flex: 0 0 100%;
  }

  .block {
    padding: 20px;
    font-size: 20px;
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .faq-block {
    margin: 50px auto 0;
    padding: 0 16px 40px;
  }

  .faq-block h2 {
    font-size: 24px;
    margin-bottom: 28px;
 }

  .faq-item h3 {
    font-size: 18px;
 }

  .faq-item p {
    font-size: 15px;
  }
}