/* QR Code Ordering - Benefits Section Styles */

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

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

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

.qr-benefits-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-benefits-header p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.qr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.qr-benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

.qr-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.qr-benefit-item h3 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.3rem;
    color: #2C5F41;
    margin-bottom: 15px;
}

.qr-benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Benefits animations */
.qr-benefit-item {
    animation: fadeInScale 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qr-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
