@charset "UTF-8";
.ServicePagefaq {
  text-align: center;
}

.ServicePagesectionTitle {
  font-size: 16px;
  color: #062024;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (max-width: 850px) {
  .ServicePagesectionTitle {
    font-size: 14px;
  }
}

/* Контейнер для всех лейблов (вопросов) */
.faqLabelsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.ServicePagefaqQuestion {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 20px;
  font-size: 14px;
  color: #062024;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow: hidden;
}
@media (max-width: 850px) {
  .ServicePagefaqQuestion {
    font-size: 12px;
  }
}

.ServicePagefaqQuestion:hover,
.ServicePagefaqQuestion[open] {
  background-color: #e0e0e0;
}

.ServicePagefaqSummary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  user-select: none;
}

.ServicePagefaqSummary::-webkit-details-marker {
  display: none;
}

.ServicePagefaqTooltip {
  padding: 0 16px 16px;
}

.ServicePagefaqTooltipContent {
  background-color: white;
  color: #2a3c4d;
  padding: 10px 14px;
  border: 1px solid #2a3c4d;
  border-radius: 6px;
  box-shadow: 0 8px 16px #2a3c4d;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}
@media (max-width: 850px) {
  .ServicePagefaqTooltipContent {
    font-size: 14px;
  }
}