.executive-faq {
  display: grid !important;
  width: 100% !important;
  gap: 14px;
}

.executive-faq__item {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 153, 128, 0.34);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 54, 47, 0.05);
}

.executive-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px 20px;
  color: #2f3735;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.executive-faq__question::-webkit-details-marker {
  display: none;
}

.executive-faq__question::after {
  content: "+";
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #27c9a6;
  border-radius: 50%;
  color: #168e77;
  background: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.executive-faq__item[open] > .executive-faq__question::after {
  content: "\2212";
  color: #123c34;
  background: #35cba9;
  transform: rotate(180deg);
}

.executive-faq__question:hover::after {
  color: #fff;
  background: #ff6955;
  border-color: #ff6955;
}

.executive-faq__question:focus-visible {
  outline: 3px solid rgba(255, 105, 85, 0.42);
  outline-offset: -3px;
}

.executive-faq__answer {
  padding: 0 20px 20px;
  border: 0 !important;
  color: #56615f;
  font-size: 17px;
  line-height: 1.65;
}

.executive-faq__item:not([open]) > .executive-faq__answer {
  display: none !important;
}

.executive-faq__answer p {
  margin: 0;
}

.executive-faq__answer a {
  color: #168e77;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .executive-faq {
    gap: 10px;
  }

  .executive-faq__question {
    min-height: 64px;
    padding: 16px;
    font-size: 16px;
  }

  .executive-faq__answer {
    padding: 0 16px 17px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .executive-faq__question::after {
    transition: none;
  }
}
