/* FAQ Section */
.pcf-faqs-section {
    margin: 50px 0 30px;
    padding: 30px 0;
    clear: both;
}

.pcf-faqs-title {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 25px;
    text-align: center;
}

.pcf-faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.pcf-faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.pcf-faq-item.pcf-faq-active {
    border-color: #333;
}

/* Question Button */
.pcf-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.pcf-faq-question:hover {
    background: #f0f0f0;
}

.pcf-faq-question span:first-child {
    flex: 1;
    padding-right: 15px;
}

/* Plus/Minus Icon */
.pcf-faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.pcf-icon-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
}

.pcf-icon-plus::before,
.pcf-icon-plus::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line (always visible) */
.pcf-icon-plus::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line (hidden when active) */
.pcf-icon-plus::after {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.pcf-faq-active .pcf-icon-plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Answer */
.pcf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pcf-faq-answer.pcf-answer-visible {
    max-height: 1000px;
}

.pcf-faq-answer-content {
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #eee;
}

.pcf-faq-answer-content p {
    margin: 0 0 12px;
}

.pcf-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pcf-faqs-title {
        font-size: 22px;
    }
    
    .pcf-faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .pcf-faq-answer-content {
        padding: 15px;
        font-size: 14px;
    }
}
