/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}


/* Заголовок страницы */
.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f7d663;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Основной блок */
.installment-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Заголовок секции */
.installment-text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.installment-text h2 .icon {
  width: 26px;
  height: 26px;
}

/* Список условий */
.installment-text ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.installment-text ul li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}
.installment-text ul li::before {
  content: "✔";
  position: absolute;
  left: 5px;
  top: 3px;
  color: #fff;
  background: #f7d663;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Текстовые акценты */
.installment-text strong {
  color: #222;
  font-weight: 700;
}
.installment-text em {
  color: #555;
  font-style: italic;
  display: block;
  margin-top: 10px;
  font-size: 15px;
}
