input[type="button"] {
    width: 60px;
    height: 30px;
    background: thistle;
    border: navajowhite;
    border-radius: 15px;
    color: white;
    font-size: 23px;
}
.accounting-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accounting-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #e6f4ea; /* Светло-зелёный фон */
  color: #1e7e34;      /* Тёмно-зелёная галочка */
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-text strong {
  font-size: 16px;
  color: #1e2a4a;      /* Тёмный цвет для заголовка */
  font-weight: 700;
}

.benefit-text span {
  font-size: 15px;
  color: #5a6778;      /* Серый цвет для описания */
  line-height: 1.5;
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
  .benefit-text strong { font-size: 15px; }
  .benefit-text span { font-size: 14px; }
}