/* Стили для стильных заголовков секций */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.section-header__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #13A7DA;
  margin: 0 1rem;
  letter-spacing: 1px;
}

.section-header__line {
  height: 1px;
  width: 3rem;
  background-color: #13A7DA;
}

.section-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .section-header__line {
    width: 2rem;
  }
  
}