.acordion-mk22-wrapper {
  width: 100%;
}

.acordion-mk22-item {
  border: 1px solid #ddd;
  margin-bottom: 5px;
  border-radius: 4px;
  overflow: hidden;
}

.acordion-mk22-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f7f7f7;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.acordion-mk22-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acordion-mk22-icon-image {
  flex-shrink: 0;
  object-fit: cover;
}

.acordion-mk22-chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.acordion-mk22-chevron-btn:hover {
  outline: none;
}

.acordion-mk22-chevron-btn svg {
  transition: transform 0.3s ease;
}

.acordion-mk22-item.active .acordion-mk22-chevron-btn svg {
  transform: rotate(180deg);
}

.acordion-mk22-header:hover {
  background-color: #e9e9e9;
}

.acordion-mk22-item.active .acordion-mk22-header {
  background-color: #e0e0e0;
}

.acordion-mk22-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.acordion-mk22-icon {
  font-size: 20px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

.acordion-mk22-item.active .acordion-mk22-icon {
  transform: rotate(45deg);
}

.acordion-mk22-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fff;
}

.acordion-mk22-item.active .acordion-mk22-content {
  padding: 20px;
  max-height: 1000px;
}

.acordion-mk22-content p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #555;
}

.acordion-mk22-content p:last-child {
  margin-bottom: 0;
}

/* Botón del Contenido */
.acordion-mk22-btn-wrapper {
  display: flex;
  width: 100%;
}

.acordion-mk22-btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.acordion-mk22-btn:hover {
  text-decoration: none;
}
