div.ccm-faq-block-links{margin-bottom:50px}div.ccm-faq-block-links a{display:block;margin-bottom:10px}div.ccm-faq-entry-content{margin-bottom:10px}


.faq-wrap { /*max-width: 780px; margin: 0 auto; padding: 1.5rem 1rem; */}
.faq-intro { font-size: 13px; color: #5a6472; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; }
.faq-badge { background: #0c2340; color: #ffffff; font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: 4px; }
details { border: 0.5px solid #69B3E7;border-left: 3px solid #69B3E7; border-radius: 8px; margin-bottom: 8px; background: #ffffff; overflow: hidden; }
details[open] { border: 0.5px solid #69B3E7; border-left: 3px solid #C99700; }
summary { 
       font-size: 1.375rem;
    font-weight: 700;
    color: #0c2340;
    padding: 1rem 1.25rem; cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 1rem; 
    user-select: none; }
summary::-webkit-details-marker { display: none; }
details[open] .chevron { transform: rotate(180deg); color: #C99700; }
summary:hover { background: #e8edf3; }
details[open] summary { color: #0c2340; border-bottom: 0.5px solid #69B3E7; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
details[open] .faq-body { max-height: 600px; }
.faq-answer { padding: 0.85rem 1.25rem 1rem; font-size: 14px; line-height: 1.7; color: #444444; }
.faq-answer p { margin: 0 0 1rem 0; }
.faq-answer a { color: #69B3E7; }
.faq-answer strong { color: #0c2340; }
.chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #69B3E7;
  border-bottom: 2px solid #69B3E7;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 2px;
}

details[open] .chevron {
  transform: rotate(225deg);
  border-color: #C99700;
  margin-bottom: -2px;
}

