/* FAQ Section Styles */
.faq-section {
  padding: 60px 20px;
  background-color: #1e1e1e;
}
.faq-section h2 {
  text-align: center;
  color: var(--art-color-vision);
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  text-align: left;
  font-size: 1.1rem;
  color: #a687dc; /* Consistent branding color */
  cursor: pointer;
  position: relative;
  outline: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question:hover {
  color: var(--art-color-innovation);
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 1.2rem;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin-top: 10px;
  font-size: 1rem;
  color: #dedede;
  line-height: 1.6;
  display: none; /* Hidden by default */
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
  padding: 0;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
  display: block;
}


.faq-item {
  background: #333; /* Dark card background */
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 15px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item.active {
  background: #444; /* Distinct tint for active FAQ */
}

.faq-item:hover {
  transform: translateY(-3px); /* Small lifting effect */
  background: #444; /* Slight change on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.faq-icon {
  font-size: 1.3rem; /* Slightly reduced icon size */
  color: #a687dc;
  transition: transform 0.3s ease; /* Smooth icon flip */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* Rotate '+' to 'x' */
}


@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-icon {
    top: 12px;
    font-size: 1rem;
  }
}

