.h1-video{
  text-transform: uppercase;
  letter-spacing: -4.8px;
  color: #fdfdfd;
  font-family: 'ProximaNovaAExCn-Bold', Arial, sans-serif !important;
  font-size: 96px;
  font-weight: 400;
  line-height: 90%;
  text-align: left;
  border: unset;
  flex-shrink: 0;
  width: max-content;
  margin: 0;
  display: inline;
  position: relative;
}

.h2{
  display: block;
  margin-bottom: 30px;
  text-align: left;
  letter-spacing: -2px;
  color: #214775;
  flex-shrink: 0;
  width: 1200px;
  font-size: 40px;
  font-weight: 600 !important;
  line-height: 90%;
  position: relative;
}

.h3{
  text-align: left;
  letter-spacing: -2px;
  color: #214775;
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  font-size: 40px;
  font-weight: 600 !important;
  line-height: 90%;
  display: inline;
  position: relative;
}

.p{
  text-align: left;
  letter-spacing: -0.4px;
  color: #3b434a;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  display: inline;
  position: relative;
}

.p2{
  text-align: left;
  letter-spacing: -0.4px;
  color: #3b434a;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  display: inline;
  position: relative;
}

/* Стили для списков */
.ul {
  margin: 20px 0;
  padding-left: 20px;
}

.li {
  margin: 10px 0;
  font-weight: 500;
}

/* Стили для нумерованных списков */
.ol {
  margin: 20px 0;
  list-style-position: outside;
  padding-left: 20px;
}

.ol .li, .ul .li {
  margin: 10px 0;
  font-size: 20px !important;
  color: #3b434a !important;
  padding-left: 10px;
}

.ol .li::marker, .ul .li::marker {
  color: #214775;
  font-weight: 700;
  margin-right: 30px;
}

.steps-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 30px 0;
}

.steps-row {
  display: flex;
  gap: 24px;
  /* Можно добавить justify-content: center; если нужно выравнивание по центру */
}

.step-card {
  background: #f6f8f9;
  border-radius: 16px;
  padding: 24px 28px 20px 28px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.02);*/
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  /*min-height: 220px;*/
  flex: 1 1 0;
  max-width: 100%;
  box-sizing: border-box;
}

.step-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #214775;
  line-height: 100%;
  letter-spacing: -1.2px;
}

.step-card__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #214775;
  background: #fff;
  border-radius: 50%;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.step-card__desc {
  margin-top: 8px;
  letter-spacing: -0.3px;
  color: #3b434a;
  font-size: 16px;
  line-height: 120%;
}

.step-card--link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px 28px 20px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /*min-height: 220px;*/
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
  border: 1px solid #f0f2f5;
}

.step-card--link:hover, .step-card--link:focus {
  box-shadow: 0 4px 16px rgba(0,102,204,0.10);
  background: #f0f6fb;
  text-decoration: none;
  border-color: #cce3fa;
}

.dark-blue {
  background: #214775;
}

.dark-blue .step-card__title{
  font-size: 40px;
  font-weight: 600;
  color: #fdfdfd;
  line-height: 90%;
}

.dark-blue .step-card__desc{
  color: #fdfdfd;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.dark-blue-btn {
  display: inline-flex; /* Меняем на inline-flex для управления вложенными элементами */
  align-items: center;   /* <-- Это свойство центрирует текст по вертикали */
  justify-content: center; /* <-- Это свойство центрирует текст по горизонтали */
  padding: 12px 28px;
  border: 2px solid #fdfdfd;
  border-radius: 50px; /* для полностью скругленных углов */
  color: #fdfdfd;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: -0.4px;
  background-color: transparent;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  line-height: 100%;
  height: 64px;
  box-sizing: border-box; /* На случай, если вы будете задавать точные размеры */
}

.dark-blue-btn:hover, .dark-blue-btn:focus {
  /*background-color: #fdfdfd;*/
  background-color: rgba(255, 255, 255, 0.2);
  color: #fdfdfd; /* темно-синий цвет фона */
  text-decoration: none;
}

.light-blue{
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  background: #219fee;
}

.light-blue:hover, .light-blue:focus {
  /*background-color: #fdfdfd;*/
  background-color: rgba(33, 159, 238, 0.8);
  color: #fdfdfd; /* темно-синий цвет фона */
  text-decoration: none;
}

.light-blue .step-card__title{
  font-size: 40px;
  font-weight: 600;
  color: #fdfdfd;
  line-height: 90%;
  letter-spacing: -2px;
}

.step-card-image{
  background-image: url('/burenie/v3/img/etapi-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
}

@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step-card {
    padding: 18px 14px;
  }
}


