.edu-home-faq {
  max-width: 860px;
  margin: 10px auto 26px;
  padding: 30px 20px 34px;
  background: #0b1426;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(11, 20, 38, 0.18);
}

.edu-home-faq .edu-section-head {
  margin-bottom: 18px;
}

.edu-home-faq .edu-section-head h2 {
  color: #ffffff;
}

.edu-home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edu-home-faq__item {
  background: #172033;
  border: 1px solid #24304a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.edu-home-faq__item:hover {
  border-color: #3b4a6b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.edu-home-faq__item[open] {
  border-color: rgba(249, 115, 22, 0.5);
  background: #1b2539;
}

.edu-home-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  padding-inline-end: 46px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.5;
  color: #f1f5f9;
  user-select: none;
}

.edu-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.edu-home-faq__item summary::after {
  content: '+';
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f97316;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.edu-home-faq__item[open] summary::after {
  content: '−';
  background: #f97316;
  transform: translateY(-50%) rotate(180deg);
}

.edu-home-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #cbd5e1;
}
