/* QR Code Ordering - FAQ Section Styles */

/* QR FAQ Section */
.qr-faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.qr-faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.qr-faq-header h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    color: #2C5F41;
    margin-bottom: 20px;
}

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

.qr-faq-grid {
    display: grid;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #4CAF50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ accordion functionality styles */
.faq-item h3 .expand-icon {
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #4CAF50;
}

.faq-item.open h3 .expand-icon {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust based on content */
}
