.faq {
    margin-bottom: 100px;
}
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.faq a {
    color: var(--accent-1);
}

.faq button:hover,
.faq button:focus {
    background-color: transparent;
}

.faq a:hover {
    color: var(--accent);
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffffff;
}
.faq h3 {
  
    margin: 10px 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
  
}

.faq-question {
    width: 100%;
    text-align: left;
   
    font-weight: bold;
    background: none;
    border: none;
    color: #ffffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0;
}

.faq-question::after {
    content: "+";
    font-size: 36px;
    transition: transform 0.2s ease;
    color: #ff757c;
}

.faq-question.active::after {
    content: "-";
    transform: rotate(180deg);
    font-size: 36px;
    color: #ff757c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
  padding:0;
    color: var(--ink-dim);
}

.faq-answer.open {
    max-height: 200px;
    
    /* padding-top: 10px; */
}

.reviewsWrapper {
    h2 {
        margin-bottom: 20px;
    }
}
