.steps {
  text-align: center;
  padding: 50px 20px;
  background-color: #000000;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.highlight {
  color: #ffd700;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #b9b7b7;
  font-size: 1rem;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.steps-left,
.steps-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-item {
  max-width: 300px;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Анимации для иконок */
@keyframes smoothPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Увеличение до 1.2 */
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.step-icon i {
  font-size: 30px;
  color: #ffd700;
}

/* Анимация для 1-й иконки - плавная пульсация */
.steps-left .step-item:nth-child(1) .step-icon i {
  animation: smoothPulse 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Анимация для 2-й иконки - плавная пульсация */
.steps-left .step-item:nth-child(2) .step-icon i {
  animation: smoothPulse 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Анимация для 3-й иконки - плавная пульсация */
.steps-right .step-item:nth-child(1) .step-icon i {
  animation: smoothPulse 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Анимация для 4-й иконки - вращение */
.steps-right .step-item:nth-child(2) .step-icon i {
  animation: rotate 6s linear infinite;
}

.step-title {
  font-size: 1.5rem;
  color: #b9b7b7;
}

.step-description {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 10px;
}

.center-image {
  width: 300px;
  height: 300px;
}

.center-image img {
  width: 100%;
  height: auto;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .steps {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .center-image {
    width: 250px;
    height: 250px;
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .steps-left,
  .steps-right {
    align-items: center;
  }

  .step-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon i {
    font-size: 25px;
  }

  .center-image {
    width: 200px;
    height: 200px;
  }
}

.google-ads-section {
  text-align: center;
  padding: 20px 15px;
  background-color: #000;
}

.ads-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.ads-title .highlight-yellow {
  background-color: #efcc06;
  padding: 0 5px;
}

.ads-subtitle {
  font-size: 1rem;
  color: #c8c8c8;
  line-height: 1.5;
  margin: 10px 0;
}

.ads-subtitle .highlight-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.ads-callout {
  font-size: 1.2rem;
  color: #f7f7f7;
  margin-top: 20px;
  font-weight: 500;
}

.ads-callout .highlight-blue {
  position: relative;
}

.ads-callout .highlight-blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #14ffec;
  transform: translateY(3px);
}

/* Стили для планшетов и десктопов */
@media (min-width: 768px) {
  .google-ads-section {
    padding: 40px 20px;
  }

  .ads-title {
    font-size: 2.2rem;
  }

  .ads-subtitle {
    font-size: 1.1rem;
  }

  .ads-callout {
    font-size: 1.5rem;
  }
}

.space-reviews {
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
}

.space-decoration {
  position: relative;
  margin-top: 20px; /* Отступ сверху для шлема */
}

.space-helmet {
  width: 80px;
  height: auto;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
  }

  .space-decoration {
    position: absolute;
    top: -40px;
    right: 20px;
  }

  .space-helmet {
    width: 120px;
  }
}

.reviews-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-card {
  background: #2d2c2c;
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(98, 97, 97, 0.2);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #aeb2a7 0%, transparent 60%);
  transform: translateX(-50%);
  opacity: 0.1;
  animation: float 6s infinite ease-in-out alternate;
}

@keyframes float {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(20px);
  }
}

.review-card blockquote {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0eaff;
  position: relative;
  z-index: 2;
}

.review-card footer {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #8fa4d4;
}

@media (min-width: 768px) {
  .reviews-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .space-reviews {
    padding-top: 180px;
    padding-bottom: 120px;
  }

  .review-card {
    width: 45%;
  }

  .space-helmet {
    width: 120px;
  }
}
