.section-faq {
  padding: 8rem 0;
  background: #f8f9fa; }
  @media (max-width: 767px) {
    .section-faq {
      padding: 4rem 0; } }

.faq-accordion {
  max-width: 900px;
  margin: 4rem auto 0;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden; }
  @media (max-width: 767px) {
    .faq-accordion {
      margin-top: 3rem;
      border-radius: 0.5rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); } }

.faq-item {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0;
  position: relative;
  transition: all 300ms ease; }
  .faq-item:first-child {
    border-top: none; }
  .faq-item:last-child {
    border-bottom: none; }
  .faq-item:hover {
    background-color: rgba(23, 162, 184, 0.02); }
  .faq-item[aria-expanded="true"] {
    background-color: rgba(23, 162, 184, 0.03);
    box-shadow: inset 4px 0 0 #17a2b8; }
    .faq-item[aria-expanded="true"] .faq-question {
      color: #17a2b8;
      font-weight: 700; }

.faq-question {
  width: 100%;
  padding: 2rem 3rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 300ms ease;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  min-height: 64px; }
  @media (max-width: 767px) {
    .faq-question {
      padding: 1.5rem 2rem;
      font-size: 1rem;
      min-height: 56px;
      gap: 1rem; } }
  .faq-question:hover {
    background-color: rgba(23, 162, 184, 0.05);
    padding-left: calc(3rem + 4px); }
    @media (max-width: 767px) {
      .faq-question:hover {
        padding-left: calc(2rem + 4px); } }
    .faq-question:hover .faq-icon {
      transform: scale(1.1);
      color: #17a2b8; }
  .faq-question:focus {
    outline: none;
    box-shadow: inset 0 0 0 3px rgba(23, 162, 184, 0.2); }
    .faq-question:focus .faq-question-text {
      color: #17a2b8; }
  .faq-question[aria-expanded="true"] {
    background-color: rgba(23, 162, 184, 0.05); }
    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(45deg) scale(1.1);
      color: #17a2b8;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .faq-question[aria-expanded="true"] .faq-question-text {
      color: #17a2b8;
      transition: color 0.3s ease-out; }

.faq-question-text {
  flex: 1;
  line-height: 1.75;
  transition: color 300ms ease;
  padding-right: 1rem; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17a2b8;
  transition: all 300ms ease;
  background: rgba(23, 162, 184, 0.1);
  border-radius: 50%; }
  @media (max-width: 767px) {
    .faq-icon {
      width: 24px;
      height: 24px; } }
  .faq-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    transition: all 300ms ease; }
  .faq-question:hover .faq-icon {
    background: rgba(23, 162, 184, 0.15); }
  .faq-question[aria-expanded="true"] .faq-icon {
    background: rgba(23, 162, 184, 0.2); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in 0.05s, visibility 0s linear;
  opacity: 0;
  visibility: hidden;
  will-change: max-height, opacity; }
  .faq-item:not([aria-expanded="true"]) .faq-answer {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out, visibility 0s linear 0.3s; }
  .faq-item[aria-expanded="true"] .faq-answer {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in 0.05s, visibility 0s linear; }

.faq-answer-content {
  padding: 0;
  color: #5a6c7d;
  line-height: 1.8;
  font-size: 1rem;
  transition: padding 0.3s ease-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.4s ease-in 0.1s;
  transform: translateY(-15px);
  opacity: 0;
  will-change: transform, opacity; }
  .faq-item:not([aria-expanded="true"]) .faq-answer-content {
    padding: 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: padding 0.25s ease-out, transform 0.3s ease-out,  opacity 0.25s ease-out; }
  .faq-item[aria-expanded="true"] .faq-answer-content {
    padding: 0 3rem 2rem;
    transform: translateY(0);
    opacity: 1;
    transition: padding 0.3s ease-in 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.4s ease-in 0.1s; }
    @media (max-width: 767px) {
      .faq-item[aria-expanded="true"] .faq-answer-content {
        padding: 0 2rem 1.5rem; } }
  @media (max-width: 767px) {
    .faq-answer-content {
      font-size: 0.875rem;
      line-height: 1.75; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-15px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(-10px); } }
  .faq-answer-content p {
    margin-bottom: 1rem;
    color: #5a6c7d; }
    .faq-answer-content p:last-child {
      margin-bottom: 0; }
  .faq-answer-content ul, .faq-answer-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem; }
    @media (max-width: 767px) {
      .faq-answer-content ul, .faq-answer-content ol {
        margin-left: 1.5rem; } }
    .faq-answer-content ul li, .faq-answer-content ol li {
      margin-bottom: 0.5rem;
      line-height: 1.75; }
      .faq-answer-content ul li::marker, .faq-answer-content ol li::marker {
        color: #17a2b8; }
  .faq-answer-content a {
    color: #17a2b8;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 150ms ease;
    font-weight: 500; }
    .faq-answer-content a:hover {
      color: #17a2b8;
      border-bottom-color: #17a2b8; }
    .faq-answer-content a:focus {
      outline: 2px solid #17a2b8;
      outline-offset: 2px;
      border-radius: 0.25rem; }
  .faq-answer-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 0.25rem;
    font-family: "Fira Code", "Consolas", "Monaco", monospace;
    font-size: 0.9em;
    color: #17a2b8; }
  .faq-answer-content blockquote {
    border-left: 4px solid #17a2b8;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #8b9cad; }

html {
  scroll-behavior: smooth; }

@media print {
  .faq-item {
    break-inside: avoid;
    page-break-inside: avoid; }
    .faq-item[aria-expanded="false"] .faq-answer {
      max-height: none;
      opacity: 1;
      display: block; }

  .faq-icon {
    display: none; } }
[dir="rtl"] .faq-item .faq-question {
  text-align: right;
  padding-left: calc(3rem + 4px);
  padding-right: 1.5rem; }
  @media (max-width: 767px) {
    [dir="rtl"] .faq-item .faq-question {
      padding-left: calc(2rem + 4px); } }
  [dir="rtl"] .faq-item .faq-question .icon {
    left: 1.5rem;
    right: auto; }
[dir="rtl"] .faq-item .faq-answer {
  padding-right: 1.5rem;
  padding-left: calc(3rem + 4px); }
  @media (max-width: 767px) {
    [dir="rtl"] .faq-item .faq-answer {
      padding-left: calc(2rem + 4px); } }
[dir="rtl"] .faq-section-header {
  margin-left: 0;
  margin-right: 2rem; }
  @media (max-width: 767px) {
    [dir="rtl"] .faq-section-header {
      margin-right: 1.5rem; } }
[dir="rtl"] .faq-section-footer {
  border-left: none;
  border-right: 4px solid #17a2b8;
  padding-left: 0;
  padding-right: 1.5rem; }

/*# sourceMappingURL=faq.css.map */
