section.faq-section {
  background: var(--color-white);
  overflow: hidden;

  h2 {
    color: var(--color-tcc-blue);
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .faq-item {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--color-white);
    transition: background 0.3s ease;

    h3 {
      text-transform: none;
      margin: 0;
      color: var(--color-tcc-blue);
      font-size: 1.5rem;
      font-weight: 600;
      flex: 1;
    }

    .faq-icon {
      color: var(--color-tcc-blue);
      font-size: 2rem;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 1rem;
    }
  }

  .faq-question:hover {
    background: var(--color-tcc-light-cyan);
  }

  .faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: var(--color-white);

    p {
      margin: 0;
    }
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
  }

  .image-container {
    position: relative;
    flex-grow: 1;

    img {
      position: absolute;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 100%;
      height: 100%;
      max-height: 590px;
      width: auto;
      max-width: none;
      left: 0;
      top: 0;
    }
  }
}

@media (min-width: 1024px) {
  section.faq-section {
    .faq-question h3 {
      font-size: 1.75rem;
    }
  }
}
