.pko-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pko-faq-accordion {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    background: #fff;
}

.faq-answer-content {
    padding: 20px;
    line-height: 1.6;
    color: #555;
}

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

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

/* Адаптивность */
@media (max-width: 600px) {
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 15px;
    }
} 