/**
 * GEO for AI Pro - FAQ Styles
 */

.geoforai-faq-list {
    list-style: none!important;
    margin: 20px 0!important;
    padding: 0!important;
    border-radius: 0;
}

.geoforai-faq-list.geoforai-faq-rounded {
    border-radius: 8px;
    overflow: hidden;
}

.geoforai-faq-list.geoforai-faq-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.geoforai-faq-item {
    border-bottom: 1px solid;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.geoforai-faq-item:last-child {
    border-bottom: none;
}

.geoforai-faq-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.geoforai-faq-question {
    padding: 16px 20px;
    font-weight: 600;
    position: relative;
    padding-right: 40px;
}

.geoforai-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.geoforai-faq-item.active .geoforai-faq-question::after {
    content: '−';
}

.geoforai-faq-answer {
    padding: 0 20px 16px 20px;
    line-height: 1.6;
}

.geoforai-faq-answer p {
    margin: 0 0 10px 0;
}

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