.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;
  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: block;
  position: relative;
  margin-bottom:30px;
}

.p{
  text-align: left!important;
  letter-spacing: -0.4px!important;
  color: #3b434a!important;
  font-size: 20px!important;
  font-weight: 400!important;
  line-height: 120%!important;
  display: block !important;
  position: relative !important;
  font-family: 'ProximaNova', Arial, sans-serif !important;
}

.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-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
}


.step-card__desc ul, .step-card__desc li{
  margin-top: 8px;
  letter-spacing: -0.3px;
  color: #3b434a;
  font-size: 16px;
  line-height: 120%;
}

@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step-card {
    padding: 18px 14px;
  }
}


/*Текст в 2 колонки*/
.content-wrapper_twocolumn {
  display: flex;
  gap: 60px;
  align-items: flex-end;
}

.left-column_twocolumn {
  flex: 1;
  max-width: 800px;
}

.right-column_twocolumn {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.download-section_twocolumn {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.download-icon_twocolumn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-image_twocolumn {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-link_twocolumn {
  font-family: ProximaNova;
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: -2%;
  color: #ffa800;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.download-link_twocolumn:hover {
  color: #e67e00;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .content-wrapper_twocolumn {
    gap: 40px;
  }

  .right-column_twocolumn {
    width: 250px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .content-wrapper_twocolumn {
    flex-direction: column;
    gap: 30px;
  }

  .left-column_twocolumn {
    max-width: 100%;
  }

  .right-column_twocolumn {
    width: 100%;
    justify-content: center;
  }
  .download-section_twocolumn {
    justify-content: center;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .download-section_twocolumn {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .download-icon_twocolumn {
    width: 35px;
    height: 35px;
  }
}
/*Текст в 2 колонки (конец)*/


