.faq-md-fullwidth {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    background: #00588d;
    padding: 40px 0;
}
.faq-md-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.faq-md-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Аккордеон MD */
.faq-md-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Пункт аккордеона */
.faq-md-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-md-item:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.2);
}

/* Заголовок */
.faq-md-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
}
.faq-md-button {
  background: none;
  border: none;
  padding: 0;
  font-weight: 500;
  color: #212121;
  text-align: left;
  flex: 1;
  position: relative;
  outline: none;
}

/* Ripple эффект */
.faq-md-button:focus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}
@keyframes ripple {
  to {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Иконка */
.faq-md-icon {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23212121" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 13H5v-2h14v2z"/></svg>');
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-md-item.open .faq-md-icon {
  transform: rotate(45deg);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23212121" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 13H5v-2h14v2z"/><path d="M12 19V5h-2v14h2z"/></svg>');
}

/* Тело ответа */
.faq-md-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}
.faq-md-item.open .faq-md-body {
  max-height: 300px;
  padding: 20px;
}
.faq-md-body p {
  margin: 0;
  color: #424242;
  line-height: 1.6;
}

/* Адаптив */
@media (max-width: 576px) {
  .faq-md-header {
    padding: 15px;
  }
  .faq-md-body {
    padding: 0 15px;
  }
}