.faq{
    display: flex;
    justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 1000px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  color: #1e1b4b;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 16px;
  color: #6b7280;
  font-weight: 400;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.faq-card:hover {
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-1px);
}

.faq-card[open] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

/* Trigger */
.faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 0.3s ease;
}

.faq-trigger::-webkit-details-marker,
.faq-trigger::marker {
  display: none;
}

.faq-card[open] .faq-trigger {
  padding-bottom: 12px;
}

/* Icon Box */
.faq-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card[open] .faq-icon-box {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.faq-svg {
  width: 20px;
  height: 20px;
  color: #6366f1;
  transition: all 0.3s ease;
}

.faq-card[open] .faq-svg {
  color: #fff;
}

/* Label */
  .faq-label {
        flex: 1;
        font-size: 20px;
        font-weight: 500;
        color: rgb(0, 0, 0);
        margin-bottom: 22px;
        line-height: 1.3;
    }

/* Chevron */
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-chevron svg {
  width: 100%;
  height: 100%;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.faq-card[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-card[open] .faq-chevron svg {
  color: #6366f1;
}

/* Content */
.faq-content {
  padding: 0 22px 22px 24px;
  overflow: hidden;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(17, 17, 17);
    max-width: 90%;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 300px;
  }
}/* === Simple Accordion FAQ Set === */

.accordion-faq {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 640px;
  margin: 40px auto;
  padding: 0 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item[open] {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

/* Chevron Icon */
.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  position: relative;
  }