.title_offer {
  font-weight: var(--font-weight-6);
  font-size: var(--font-size-l);
  line-height: 25px;
  font-family: var(--font-family-1);
  margin-top: 30px;
  margin-bottom: 15px;
}

/* H1 стиль */
.title_offer:first-of-type {
  font-size: var(--font-size-xl);
  margin-top: 0;
  margin-bottom: 20px;
}

/* H2 стиль для заголовков разделов */
h2.title_offer {
  font-size: var(--font-size-l);
  margin-top: 35px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--transparent-5-w);
}

.desc_ofer {
  padding: 10px 15px;
  font-size: var(--font-size-m);
  color: var(--text-custom);
  font-weight: var(--font-weight-4);
  margin: 10px 0 20px 0;
  text-align: center;
}

.badge span {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-4);
  position: absolute;
  right: 20px;
  color: var(--text-custom);
  opacity: 0.5;
}

.oferta_list li {
  font-size: var(--font-size-m);
  color: var(--text-custom);
  margin-bottom: 8px;
}

.oferta_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.oferta_list li b{
  font-weight: var(--font-weight-7);
  color: white;
}

.oferta_list li code {
  background: var(--card);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--span);
  border: 1px solid var(--transparent-5-w);
}

.oferta_list li ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Стили для изображения инструкции */
.card-container img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

