/* ================================================
   Блок: Как мы встречаем на вокзале
   ================================================ */

.station-meeting-block {
  min-width: 800px;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.station-meeting-container {
  max-width: 1200px;
  margin: 0;
  text-align: left;
}

.station-meeting-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a4d7a;
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
}

.station-meeting-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meeting-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 77, 122, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meeting-step:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.15);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #1a4d7a 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 0 0 10px 0;
  padding: 0;
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  padding: 0;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .station-meeting-block {
    min-width: 800px;
  }
  
  .station-meeting-title {
    font-size: 28px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 15px;
  }
}

/* Защита от поломки других блоков */
.station-meeting-block * {
  box-sizing: border-box;
}

.station-meeting-block::before,
.station-meeting-block::after {
  content: none;
}