/* POS FAQ Section Styles */

.pos-faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pos-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pos-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.pos-faq-header h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.pos-faq-header p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    color: #64748b;
}

.pos-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item h3.faq-closed::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #4ECDC4;
}

.faq-item h3.faq-open::after {
    content: '−';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #4ECDC4;
}

.faq-item h3:hover {
    color: #2C5F41;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .pos-faq-header h2 {
        font-size: 2rem;
    }
}
