@charset "UTF-8";
@use 'variables' as *;
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: oklch(25% 0.02 265);
  line-height: 1.5;
  background-color: oklch(100% 0 0); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: oklch(70% 0.15 50);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.2s ease; }
  .skip-link:focus {
    top: 0; }

:focus {
  outline: 3px solid oklch(70% 0.15 50);
  outline-offset: 2px; }

:focus:not(:focus-visible) {
  outline: none; }

:focus-visible {
  outline: 3px solid oklch(70% 0.15 50);
  outline-offset: 2px; }

.page-faq {
  @use 'variables' as *;
  @use 'variables' as *;
  @use 'variables' as *;
  @use 'variables' as *;
  @use 'variables' as *;
  @use 'variables' as *; }
  @media (max-width: 768px) {
    .page-faq .container {
      padding: 0;
      max-width: 100; } }
  .page-faq .faq-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem; }
    @media (max-width: 1024px) {
      .page-faq .faq-page-layout {
        padding: 1.5rem;
        gap: 1.5rem; } }
    @media (max-width: 768px) {
      .page-faq .faq-page-layout {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem; } }
  .page-faq main {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; }
    @media (max-width: 768px) {
      .page-faq main {
        padding: 0; } }
  .page-faq aside {
    background-color: oklch(100% 0 0);
    padding: 1.5rem;
    border-right: 1px solid oklch(85% 0.03 250);
    height: calc(100vh - 4rem);
    position: sticky;
    top: 2rem; }
    .page-faq aside h2 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: oklch(25% 0.02 265); }
      .page-faq aside h2 button {
        min-width: 48px;
        min-height: 48px;
        font-size: 2rem;
        display: none; }
    @media (max-width: 768px) {
      .page-faq aside {
        height: auto;
        position: static;
        max-height: 70px;
        overflow: hidden;
        border-right: none;
        padding: 0;
        border-bottom: 1px solid oklch(85% 0.03 250); }
        .page-faq aside[open] {
          max-height: 100%; }
        .page-faq aside h2 {
          display: flex;
          justify-content: space-between; }
          .page-faq aside h2 button {
            display: block;
            margin-left: auto; } }
    .page-faq aside ul {
      list-style: none; }
    .page-faq aside li {
      margin-bottom: 0.25rem; }
    .page-faq aside a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 2.5rem;
      padding: 0.5rem 0.75rem;
      color: oklch(45% 0.05 265);
      text-decoration: none;
      border-radius: 0.5rem;
      transition: all 0.2s ease-in-out;
      position: relative; }
      .page-faq aside a span {
        line-height: 1.2;
        min-height: 2.5rem;
        max-width: 170px;
        display: flex;
        align-items: center; }
        @media (max-width: 768px) {
          .page-faq aside a span {
            padding-left: 1rem; } }
      .page-faq aside a:hover {
        background-color: oklch(40% 0.1 265);
        color: white;
        padding-right: 2rem; }
        .page-faq aside a:hover .count {
          display: none; }
        .page-faq aside a:hover::after {
          content: '→';
          position: absolute;
          color: oklch(70% 0.15 50);
          right: 0.75rem;
          opacity: 1;
          transform: translateX(0); }
      .page-faq aside a::after {
        content: '→';
        position: absolute;
        right: 0.5rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.2s ease-in-out; }
      .page-faq aside a .count {
        font-size: 0.875rem;
        color: oklch(70% 0.15 50);
        display: flex; }
  .page-faq .categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0; }
    @media (max-width: 1200px) {
      .page-faq .categories-grid {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 900px) {
      .page-faq .categories-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .page-faq .categories-grid {
        grid-template-columns: 1fr; } }
    .page-faq .categories-grid li {
      height: 100%; }
  .page-faq .category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: oklch(100% 0 0);
    border: 1px solid oklch(85% 0.03 250);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: oklch(25% 0.02 265); }
    .page-faq .category-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 6px -1px color-mix(in oklch, oklch(15% 0.02 265) 10%, transparent); }
    .page-faq .category-card figure {
      margin: 0;
      display: flex;
      flex-direction: column;
      height: 100%; }
      .page-faq .category-card figure img {
        width: 100%;
        height: 200px;
        object-fit: cover; }
      .page-faq .category-card figure figcaption {
        padding: 1rem;
        font-weight: 500;
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center; }
  .page-faq .app-accordion-item {
    border: 1px solid oklch(85% 0.03 250);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: oklch(100% 0 0);
    box-shadow: 0 1px 2px 0 color-mix(in oklch, oklch(15% 0.02 265) 5%, transparent); }
  .page-faq .app-accordion-trigger {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    background: oklch(100% 0 0);
    border: none;
    cursor: pointer;
    color: oklch(25% 0.02 265);
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease; }
    .page-faq .app-accordion-trigger:hover {
      background: oklch(40% 0.1 265);
      color: oklch(100% 0 0); }
      .page-faq .app-accordion-trigger:hover .app-accordion-icon {
        color: oklch(100% 0 0); }
    .page-faq .app-accordion-trigger .app-accordion-title {
      flex: 1;
      font-size: 1.1rem; }
    .page-faq .app-accordion-trigger .app-accordion-icon {
      font-size: 1.5rem;
      color: oklch(70% 0.15 50);
      min-width: 24px;
      text-align: center;
      transition: transform 0.3s ease; }
  .page-faq .app-accordion-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: oklch(70% 0.15 50);
    min-width: 2rem;
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem; }
  .page-faq .app-accordion-content {
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out; }
    .page-faq .app-accordion-content.expanded {
      padding: 1.5rem;
      max-height: 2000px;
      opacity: 1;
      border-top: 1px solid oklch(85% 0.03 250); }
    .page-faq .app-accordion-content .app-accordion-label {
      color: oklch(70% 0.15 50); }
  .page-faq .answer-container {
    display: flex;
    gap: 1rem;
    align-items: flex-start; }
  .page-faq .answer-content {
    flex: 1; }
    .page-faq .answer-content p {
      margin-bottom: 1rem;
      line-height: 1.6; }
      .page-faq .answer-content p:last-child {
        margin-bottom: 0; }
    .page-faq .answer-content img {
      max-width: 100%;
      height: auto;
      border-radius: 0.5rem;
      margin: 1rem 0; }
    .page-faq .answer-content a {
      color: oklch(70% 0.15 50);
      text-decoration: none;
      font-weight: 500; }
      .page-faq .answer-content a:hover {
        text-decoration: underline; }
  .page-faq .back-button {
    background: none;
    border: none;
    color: oklch(70% 0.15 50);
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.2s ease-in-out; }
    .page-faq .back-button:hover {
      color: oklch(40% 0.1 265); }
  .page-faq .loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%; }
  .page-faq .loadingOverlay {
    width: 40px;
    height: 40px;
    border: 3px solid oklch(97% 0.02 250);
    border-radius: 50%;
    border-top-color: oklch(70% 0.15 50);
    animation: spin 1s linear infinite; }
  .page-faq .answers-container {
    position: relative;
    min-height: 200px; }
  .page-faq .search-results-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: color-mix(in oklch, oklch(70% 0.15 50) 5%, oklch(100% 0 0));
    border-left: 4px solid oklch(70% 0.15 50);
    border-radius: 0.5rem;
    margin-bottom: 2rem; }
    .page-faq .search-results-message .search-results-icon {
      color: oklch(70% 0.15 50);
      display: flex;
      align-items: center;
      opacity: 0.8; }
    .page-faq .search-results-message .search-results-content {
      flex: 1; }
      .page-faq .search-results-message .search-results-content p {
        margin: 0;
        font-size: 0.95rem;
        color: oklch(45% 0.05 265); }
        .page-faq .search-results-message .search-results-content p strong {
          color: oklch(25% 0.02 265);
          font-weight: 600; }
        .page-faq .search-results-message .search-results-content p em {
          font-style: normal;
          color: oklch(70% 0.15 50);
          font-weight: 500;
          background: color-mix(in oklch, oklch(70% 0.15 50) 10%, transparent);
          padding: 0.15rem 0.4rem;
          border-radius: 0.25rem; }
  .page-faq .no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: oklch(100% 0 0);
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 color-mix(in oklch, oklch(15% 0.02 265) 5%, transparent);
    border: 1px solid oklch(85% 0.03 250);
    margin: 2rem 0; }
    .page-faq .no-results .no-results-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      color: oklch(45% 0.05 265); }
      .page-faq .no-results .no-results-icon svg {
        width: 100%;
        height: 100%; }
    .page-faq .no-results p {
      font-size: 1.5rem;
      font-weight: 600;
      color: oklch(25% 0.02 265);
      margin-bottom: 1rem; }
    .page-faq .no-results span {
      display: inline;
      color: oklch(45% 0.05 265);
      font-size: 1.125rem;
      line-height: 1.5;
      margin-right: 0.25rem; }
    .page-faq .no-results .back-link {
      display: inline;
      background: none;
      border: none;
      padding: 0;
      color: oklch(70% 0.15 50);
      font-size: 1.125rem;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s ease-in-out; }
      .page-faq .no-results .back-link:hover {
        color: oklch(40% 0.1 265);
        text-decoration: underline; }

@keyframes spin {
  to {
    transform: rotate(360deg); } }
  .page-faq .search-section {
    background-color: #f8fafc;
    border: 1px solid oklch(85% 0.03 250);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 2px 0 color-mix(in oklch, oklch(15% 0.02 265) 5%, transparent); }
    .page-faq .search-section h2 {
      font-size: 1.125rem;
      font-weight: 600;
      color: oklch(45% 0.05 265);
      margin-bottom: 1rem; }
    @media (max-width: 768px) {
      .page-faq .search-section {
        padding-bottom: 4rem; } }
  .page-faq .search-controls {
    display: flex;
    max-height: 50px;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 0.75rem; }
    .page-faq .search-controls .search-button {
      position: absolute;
      left: 0.5rem;
      top: 55%;
      transform: translateY(-50%); }
    @media (max-width: 640px) {
      .page-faq .search-controls {
        flex-direction: column; } }
  .page-faq .search-helper-text {
    text-align: left;
    color: oklch(45% 0.05 265);
    font-size: 0.875rem;
    margin-top: 0.75rem; }
  .page-faq .category-select {
    width: 240px;
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 2px solid oklch(85% 0.03 250);
    border-radius: 0.5rem;
    font-size: 1rem;
    text-overflow: elipsis;
    color: oklch(25% 0.02 265);
    background-color: oklch(100% 0 0);
    transition: all 0.2s ease-in-out;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em; }
    .page-faq .category-select:hover {
      border-color: color-mix(in oklch, oklch(85% 0.03 250) 90%, black); }
    .page-faq .category-select:focus {
      outline: none;
      border-color: oklch(70% 0.15 50);
      box-shadow: 0 0 0 3px color-mix(in oklch, oklch(70% 0.15 50) 10%, transparent); }
    @media (max-width: 640px) {
      .page-faq .category-select {
        width: 100%; } }
  .page-faq .search-container {
    position: relative;
    flex: 1;
    min-width: 0; }
  .page-faq .search-input {
    width: 100%;
    height: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid oklch(85% 0.03 250);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: oklch(25% 0.02 265);
    background-color: oklch(100% 0 0);
    transition: all 0.2s ease-in-out; }
    .page-faq .search-input:hover {
      border-color: color-mix(in oklch, oklch(85% 0.03 250) 90%, black); }
    .page-faq .search-input:focus {
      outline: none;
      border-color: oklch(70% 0.15 50);
      box-shadow: 0 0 0 3px color-mix(in oklch, oklch(70% 0.15 50) 10%, transparent); }
    .page-faq .search-input::placeholder {
      color: oklch(45% 0.05 265); }
  .page-faq .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: oklch(45% 0.05 265);
    pointer-events: none;
    transition: all 0.2s ease-in-out; }
  .page-faq .search-input:focus + .search-icon {
    color: oklch(25% 0.02 265); }
  .page-faq .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: oklch(25% 0.02 265);
    margin: 1rem 0 1.5rem; }

.faq-page-layout h3 {
  margin: 0; }

.faq-page-layout aside ul {
  margin-left: -1rem; }
