/* ============================================
   FAQ ACCORDION (schema FAQPage) — couleurs/polices du thème cryptcio
   ============================================ */
.cryptcio-faq {
  margin-top: 30px;   
   margin: auto;
    width: 100%;
    max-width: 1000px;
}

.cryptcio-faq .pm-item {
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #f8f7f7;
  transition: background-color 0.3s ease;
}

.cryptcio-faq .pm-item.active {
  background-color: #eff7ff;
}

.cryptcio-faq .pm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 25px;
  cursor: pointer;
}

.cryptcio-faq .pm-item h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #13264a;
}

.cryptcio-faq .pm-item.active h3 {
  color: #111143;
}

.cryptcio-faq .pm-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1b4b;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.cryptcio-faq .pm-icon i {
  color: white;
  font-size: 14px;
}

.cryptcio-faq .pm-item.active .pm-icon {
  background-color: #ffffff;
  transform: rotate(180deg);
}

.cryptcio-faq .pm-item.active .pm-icon i {
  color: #111143;
}

.cryptcio-faq .pm-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.cryptcio-faq .pm-item.active .pm-content {
  max-height: 500px;
  padding: 0 25px 25px;
}

.cryptcio-faq .pm-content-inner p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: #555555;
}

.cryptcio-faq .pm-item.active .pm-content-inner p {
  color: #111143;
}
.pm-icon .fa-angle-down:before {
    content: "\f106";
}