:root {
    --purple-primary: #4B1E4F;
    --grey-border: #E4E1E4;
    --light-grey-background: #fAf9f9;
    --purple-secondary: #6B0544;
    --purple-tertiary: #6b2d5c;
    --dark-text: #333;
}

.page-title {
    text-align: center;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    color: #6b2d5c !important;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-category-btn {
    background-color: #e8e8e8;
    color: #666;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    background-color: #d0d0d0;
}

.faq-category-btn.active {
    background-color: #6b2d5c;
    color: white;
}

.faq-container {
    max-width: 900rem;
    margin: 0 auto;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-line-top {
    height: 1px;
    background-color: var(--grey-border);
    width: 100%;
    max-width: 900rem;
    margin: 0 auto;
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid var(--grey-border);
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

.faq-category-content.active .faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover .faq-question {
    color: #6b2d5c;
}

.faq-item:hover .faq-question i {
    color: #6b2d5c;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s, background-color 0.3s;
    background-color: white;
    border-top: 1px solid transparent; 
}

.faq-question i {
    margin-right: 15px;
    color: #666;
    font-size: 0.8em;
    transition: color 0.3s, transform 0.3s;
}

.faq-item.open {
    border-top: none; 
}

.faq-item.open .faq-question {
    background-color: var(--light-grey-background);
    font-weight: bold; 
    color: #6b2d5c;
    border-top: 1px solid #6b2d5c;
}

.faq-item.open .faq-question i {
    color: #6b2d5c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    background-color: white;
}

.faq-item.open .faq-answer {
    max-height: 500px; 
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    padding-left: 30px;
}

.faq-cta {
    text-align: left;
    max-width: 900rem;
    margin: 30px auto 30px auto;
    padding: 0px 0px;
    border-top: none; 
}

.faq-cta h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #555 !important;
    margin-bottom: 10px;
}

.faq-cta p {
    font-size: 0.95em;
    color: #555 !important;
}