.aiw-faq h1, .aiw-faq h2, .aiw-faq h3, .aiw-faq h4, .aiw-faq h5, .aiw-faq h6 {
    color: #1E1E24;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.aiw-faq {
    padding: 80px 0;
    position: relative;
}
  
.aiw-faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E1E24;
    margin-bottom: 48px;
    text-align: center;
}
  
.aiw-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
  
.aiw-faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
}
  
.aiw-faq-item:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
  
.aiw-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E1E24;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    font-family: 'Inter', Arial, sans-serif;
}
  
.aiw-faq-question:hover {
    color: #6253FF;
}
  
.aiw-faq-icon {
    min-width: 24px;
    height: 24px;
    margin-left: 12px;
    color: #6253FF;
    transition: transform 0.3s;
}
  
.aiw-faq-item.active .aiw-faq-icon {
    transform: rotate(45deg);
}
  
.aiw-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: #4D4F50;
    font-size: 1rem;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
  
.aiw-faq-item.active .aiw-faq-answer {
    max-height: 1000px;
    padding: 0 28px 28px 28px;
}
  
.aiw-faq-answer p {
    margin-bottom: 16px;
}
  
.aiw-faq-answer p:last-child {
    margin-bottom: 0;
}

.aiw-faq-answer ul {
    padding-left: 28px;
    margin-bottom: 16px;
}

.aiw-faq-answer li {
    margin-bottom: 8px;
    position: relative;
}

.aiw-faq-answer li::before {
    content: "•";
    color: #6253FF;
    font-weight: bold;
    position: absolute;
    left: -16px;
}